Browse Source

Actualy fix stuff this time

master
Antoine COMBET 3 years ago
parent
commit
b71a3973f7
  1. 3
      app/Main.hs

3
app/Main.hs

@ -77,6 +77,7 @@ onDiscordStart conf eventSystem = do
let reminddata :: [Remind]
reminddata = map read $ lines remindfile
now <- liftIO getCurrentTime
liftIO $ removeFile "reminds.data"
mapM_ (\r -> do
withRunInIO $ \runInIO ->
if now > rmdWhen r then
@ -89,6 +90,8 @@ onDiscordStart conf eventSystem = do
`T.append` "> **Reminder**\n"
`T.append` rmdWhat r
)
appendFile "reminds.data" $ show r
return ()
)
else

Loading…
Cancel
Save