Archived
1
0
Fork 0

Fixed a bug in the quote module

This commit is contained in:
Julien Dessaux 2011-11-03 18:51:57 +01:00
parent 50c8c0801e
commit cc8053fc80

View file

@ -84,7 +84,7 @@ isQuoteLockedFor quoteId requestor now = do
Just (owner, lockStamp) ->
if owner == requestor
then return $ Just True
else return . Just $ (addUTCTime 300 lockStamp > now) -- Is the entry older than 5 min?
else return . Just $ (addUTCTime 300 lockStamp < now) -- Is the entry older than 5 min?
Nothing -> return $ Just True
Nothing -> return Nothing