Преглед на файлове

Dont schedule if date is in past without variable components (Windows)

Sebastián Katzer преди 8 години
родител
ревизия
55890836bc
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Trigger.cs

+ 1 - 1
src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Trigger.cs

@@ -179,7 +179,7 @@ namespace LocalNotificationProxy.LocalNotification
                 return date;
             }
 
-            if (date.Year < now.Year)
+            if (every.Interval == null || date.Year < now.Year)
             {
                 return null;
             }