Skip to content

Commit 027bd16

Browse files
authored
fix: expected ';' at end of declaration (#515)
1 parent 4daaadc commit 027bd16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ios/RCTPushy/RCTPushy.mm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ - (instancetype)init
304304
if (hash.length) {
305305
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
306306
NSString *lastVersion = nil;
307-
NSDictionary *pushyInfo = [defaults objectForKey:keyPushyInfo]
307+
NSDictionary *pushyInfo = [defaults objectForKey:keyPushyInfo];
308308
if (pushyInfo) {
309309
lastVersion = pushyInfo[paramCurrentVersion];
310310
}
@@ -679,4 +679,4 @@ + (NSString *)buildTime
679679
}
680680
#endif
681681

682-
@end
682+
@end

0 commit comments

Comments
 (0)