react-native-update 10.35.5 → 10.35.6
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/ios/RCTPushy/RCTPushy.mm +2 -2
- package/package.json +1 -1
package/ios/RCTPushy/RCTPushy.mm
CHANGED
|
@@ -304,7 +304,7 @@ RCT_EXPORT_METHOD(setNeedUpdate:(NSDictionary *)options
|
|
|
304
304
|
if (hash.length) {
|
|
305
305
|
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
|
|
306
306
|
NSString *lastVersion = nil;
|
|
307
|
-
NSDictionary *pushyInfo = [defaults objectForKey:keyPushyInfo]
|
|
307
|
+
NSDictionary *pushyInfo = [defaults objectForKey:keyPushyInfo];
|
|
308
308
|
if (pushyInfo) {
|
|
309
309
|
lastVersion = pushyInfo[paramCurrentVersion];
|
|
310
310
|
}
|
|
@@ -679,4 +679,4 @@ RCT_EXPORT_METHOD(markSuccess:(RCTPromiseResolveBlock)resolve
|
|
|
679
679
|
}
|
|
680
680
|
#endif
|
|
681
681
|
|
|
682
|
-
@end
|
|
682
|
+
@end
|