From aa998995b62c35744c9bf6f035ee8ccb88a10eee Mon Sep 17 00:00:00 2001 From: Scc Date: Fri, 31 Oct 2025 11:35:40 +0800 Subject: [PATCH] fix: expected ';' at end of declaration --- ios/RCTPushy/RCTPushy.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ios/RCTPushy/RCTPushy.mm b/ios/RCTPushy/RCTPushy.mm index d597cde0..1c32768c 100644 --- a/ios/RCTPushy/RCTPushy.mm +++ b/ios/RCTPushy/RCTPushy.mm @@ -304,7 +304,7 @@ - (instancetype)init 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 @@ + (NSString *)buildTime } #endif -@end \ No newline at end of file +@end