summaryrefslogtreecommitdiff
path: root/Presence/LocalChat.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Presence/LocalChat.hs')
-rw-r--r--Presence/LocalChat.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Presence/LocalChat.hs b/Presence/LocalChat.hs
index 39195fc9..eab54a03 100644
--- a/Presence/LocalChat.hs
+++ b/Presence/LocalChat.hs
@@ -47,10 +47,10 @@ chatevents rsvar = do
47 ps <- roomPending r 47 ps <- roomPending r
48 trace ("roomPending " ++ show ps) $ return () 48 trace ("roomPending " ++ show ps) $ return ()
49 case Map.toList ps of 49 case Map.toList ps of
50 (k,t):_ -> do 50 (k,t):ts -> do
51 roomCommit r k t 51 roomCommit r k t
52 return $ do 52 return $ do
53 dput XJabber $ "fuck " ++ show (k,t) 53 dput XJabber $ "committed " ++ show (length ts,k,t)
54 _ -> retry 54 _ -> retry
55 return $ foldl1 (>>) ios 55 return $ foldl1 (>>) ios
56 56