Browse Source

Missing negation causes cancel of repeating notifications after 5 days

Sebastián Katzer 10 năm trước cách đây
mục cha
commit
e936d0e046
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/ios/APPLocalNotification.m

+ 2 - 2
src/ios/APPLocalNotification.m

@@ -486,7 +486,7 @@
 }
 
 /**
- * Cancels all local notification with are older then
+ * Cancels all non-repeating local notification older then
  * a specific amount of seconds
  */
 - (void) cancelAllNotificationsWhichAreOlderThen:(float)seconds
@@ -497,7 +497,7 @@
 
     for (UILocalNotification* notification in notifications)
     {
-        if (notification && [notification isRepeating]
+        if (notification && ![notification isRepeating]
             && notification.timeIntervalSinceFireDate > seconds)
         {
             [self.app cancelLocalNotification:notification];