diff --git a/smash/web/views/notifications.py b/smash/web/views/notifications.py
index 31f749d8f8997c25ada97ffa4f2043b059f2ce21..0f7d4e666a919281fd4845c2f5bc704eb38bf519 100644
--- a/smash/web/views/notifications.py
+++ b/smash/web/views/notifications.py
@@ -123,7 +123,7 @@ def get_subjects_with_no_visit(user):
 
 
 def get_subjects_with_reminder(user):
-    tomorrow = get_today_midnight_date() + datetime.timedelta(days=1)
+    tomorrow = datetime.datetime.now() + datetime.timedelta(hours=1)
 
     result = Subject.objects.filter(
         dead=False,