Jabbot
Jabbot copied to clipboard
Scheduler uses DateTime.Now, should use DateTime.UtcNow
DateTime.Now has the unfortunate ability to leap forward or back by an hour twice a year which would mess up the calculation:-
var currentItems = _scheduledAnnouncements.Where(c => c.Value < now).ToList();
(Scheduler.cs in Jabbot.ConsoleBotHost project)