소스 검색

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;
             }