1
0
mirror of https://gitcode.com/gh_mirrors/re/react-native-pushy.git synced 2025-11-22 15:36:10 +08:00
Code Issues Packages Projects Releases Wiki Activity GitHub Gitee

fix: expected ';' at end of declaration (#515)

This commit is contained in:
Scc
2025-10-31 13:18:24 +08:00
committed by GitHub
parent 4daaadce70
commit 027bd16af2

View File

@@ -304,7 +304,7 @@ RCT_EXPORT_METHOD(setNeedUpdate:(NSDictionary *)options
if (hash.length) {
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSString *lastVersion = nil;
NSDictionary *pushyInfo = [defaults objectForKey:keyPushyInfo]
NSDictionary *pushyInfo = [defaults objectForKey:keyPushyInfo];
if (pushyInfo) {
lastVersion = pushyInfo[paramCurrentVersion];
}
@@ -679,4 +679,4 @@ RCT_EXPORT_METHOD(markSuccess:(RCTPromiseResolveBlock)resolve
}
#endif
@end
@end