Archived
1
0
Fork 0
This commit is contained in:
Julien Dessaux 2011-08-08 21:11:01 +02:00
parent 3b914c1b77
commit d933088dcb

View file

@ -40,8 +40,7 @@ setGlobalQuitMVar status = do
hasAccess :: Maybe IRC.Prefix -> AccessRight -> Env IO Bool
hasAccess Nothing _ = return False
hasAccess (Just mask) right = do
botMVar <- asks envBotState
liftIO (readMVar botMVar) >>= evalStateT (fmap (any accessMatch) (gets botAccess))
asks envBotState >>= liftIO . readMVar >>= evalStateT (fmap (any accessMatch) (gets botAccess))
where
accessMatch :: AccessList -> Bool
accessMatch (AccessList amask arights)