Sfoglia il codice sorgente

Missing negation causes cancel of repeating notifications after 5 days

Sebastián Katzer 10 anni fa
parent
commit
e936d0e046
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  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];