cordova-plugin-appice 2.3.1 → 2.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/plugin.xml +1 -1
- package/src/ios/AppICEPlugin.m +1 -2
package/package.json
CHANGED
package/plugin.xml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
|
3
|
-
id="cordova-plugin-appice" version="2.3.
|
|
3
|
+
id="cordova-plugin-appice" version="2.3.2">
|
|
4
4
|
<name>AppICE</name>
|
|
5
5
|
<description>AppICE Plugin for Cordova/PhoneGap</description>
|
|
6
6
|
<license>Commercial</license>
|
package/src/ios/AppICEPlugin.m
CHANGED
|
@@ -1641,7 +1641,6 @@ static NSDictionary *pendingDeeplink = nil;
|
|
|
1641
1641
|
[result setKeepCallbackAsBool:YES]; // Keep callback for future events
|
|
1642
1642
|
[self.commandDelegate sendPluginResult:result callbackId:self.clickCallbackId];
|
|
1643
1643
|
}
|
|
1644
|
-
}
|
|
1645
1644
|
|
|
1646
1645
|
// 2) New event flow (added)
|
|
1647
1646
|
NSError *error = nil;
|
|
@@ -1655,7 +1654,7 @@ static NSDictionary *pendingDeeplink = nil;
|
|
|
1655
1654
|
[self.commandDelegate evalJs:js];
|
|
1656
1655
|
}
|
|
1657
1656
|
}
|
|
1658
|
-
];
|
|
1657
|
+
}];
|
|
1659
1658
|
|
|
1660
1659
|
// Initial response to JS to keep callback open
|
|
1661
1660
|
CDVPluginResult *initialResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_NO_RESULT];
|