Compare commits

...

2 Commits

Author SHA1 Message Date
Starbeamrainbowlabs 49316836d9
Merge branch 'master' of git.starbeamrainbowlabs.com:sbrl/RhinoReminds
continuous-integration/laminar-elessar Build 75 succeeded in 55 seconds . Details
2019-03-11 20:41:54 +00:00
Starbeamrainbowlabs a256158f89
Tweak Task.Delay() to fix odd issue 2019-03-11 20:41:49 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -347,7 +347,7 @@ namespace RhinoReminds
if (DateTime.Now < nextReminder.Time)
{
Console.WriteLine($"[Rhino/Reminderd] Sleeping for {nextWaitingTime}");
await Task.Delay(nextWaitingTime, reminderWatcherResetToken);
await Task.Delay((int)Math.Ceiling(Math.Abs(nextWaitingTime.TotalMilliseconds)), reminderWatcherResetToken);
}
}
else {