diff --git a/lib/notifications.js b/lib/notifications.js
index 06056427f17bb8ff58f2f68468446f732395dbfc..74427d2dd46c7df63fc5774cdedaa648bd47901d 100644
--- a/lib/notifications.js
+++ b/lib/notifications.js
@@ -64,14 +64,17 @@ function setupPeriodReminder() {
       .hours(6)
       .minutes(0)
       .seconds(0)
+
+    if (reminderDate.isAfter()) {
     // period is likely to start in 3 to 3 + (length of prediction - 1) days
-    const daysToEndOfPrediction = bleedingPrediction[0].length + 2
+      const daysToEndOfPrediction = bleedingPrediction[0].length + 2
 
-    Notification.localNotificationSchedule({
-      id: '2',
-      message: labels.periodReminder.notification(daysToEndOfPrediction),
-      date: reminderDate.toDate(),
-      vibrate: false
-    })
+      Notification.localNotificationSchedule({
+        id: '2',
+        message: labels.periodReminder.notification(daysToEndOfPrediction),
+        date: reminderDate.toDate(),
+        vibrate: false
+      })
+    }
   }
 }
\ No newline at end of file