Skip to content
This repository has been archived by the owner on Jul 3, 2020. It is now read-only.

Commit

Permalink
Fixed TheaterScheduleHasUpdated returning True when it did not update.
Browse files Browse the repository at this point in the history
  • Loading branch information
bofirial committed Jun 11, 2017
1 parent f3fd512 commit 626df7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Melody49Notifier/Melody49Notifier.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 626df7a

Please sign in to comment.