Browse Source

Fix wasInThePast

Sebastián Katzer 11 years ago
parent
commit
9e93c40b15
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/ios/UILocalNotification+APPLocalNotification.m

+ 1 - 1
src/ios/UILocalNotification+APPLocalNotification.m

@@ -143,7 +143,7 @@ static char optionsKey;
  */
 - (BOOL) wasInThePast
 {
-    return [self timeIntervalSinceFireDate] < 0;
+    return [self timeIntervalSinceFireDate] > 0;
 }
 
 /**