From 626df7af68e7c1be6eb0a1b8beaf0f3f4439b44c Mon Sep 17 00:00:00 2001 From: James Schafer Date: Sat, 10 Jun 2017 23:01:17 -0400 Subject: [PATCH] Fixed TheaterScheduleHasUpdated returning True when it did not update. --- Melody49Notifier/Melody49Notifier.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Melody49Notifier/Melody49Notifier.cs b/Melody49Notifier/Melody49Notifier.cs index 7b12938..f97b185 100644 --- a/Melody49Notifier/Melody49Notifier.cs +++ b/Melody49Notifier/Melody49Notifier.cs @@ -38,10 +38,10 @@ private static bool TheaterScheduleHasUpdated(TraceWriter log, out TheaterSchedu { currentTheaterScheduleDataFileManager.UpdateCurrentTheaterSchedule(currentTheaterScheduleFromWebSite); - return false; + return true; } - return true; + return false; } private static void SendNotification(TraceWriter log, TheaterSchedule currentTheaterSchedule)