aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Main.hs
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2015-04-05 20:26:19 +0900
committerSean Whitton <spwhitton@spwhitton.name>2015-04-05 20:26:19 +0900
commit7fa6579581b6734595b0d028056998b1c96f4af4 (patch)
treecf81b3589b62c197277c431bfa5a2ce8012caf65 /src/Main.hs
parentef6658144244e5dcb319a21cfc6dbe706c7ea0be (diff)
downloadsrem-7fa6579581b6734595b0d028056998b1c96f4af4.tar.gz
timetable reminders functionality for school
Diffstat (limited to 'src/Main.hs')
-rw-r--r--src/Main.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main.hs b/src/Main.hs
index 21388f6..9e43724 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -37,7 +37,7 @@ import Utility.Notify
doCron :: IO ()
doCron = do
purgeOldEventCaches
- rems <- (++) <$> readEmacsEventCache <*> readManualEventCache
+ rems <- (++) <$> readEmacsEventCache <*> ((++) <$> readManualEventCache <*> getTimetableReminders)
(h, m, _) <- localHMD
let nowRemsFilter r = getReminderHour r == h
&& getReminderMinute r == m