Commit 55890836 by Sebastián Katzer

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

parent 6eddc7dc
...@@ -179,7 +179,7 @@ namespace LocalNotificationProxy.LocalNotification ...@@ -179,7 +179,7 @@ namespace LocalNotificationProxy.LocalNotification
return date; return date;
} }
if (date.Year < now.Year) if (every.Interval == null || date.Year < now.Year)
{ {
return null; return null;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment