packages feed

hzulip 0.4.0.0 → 0.4.0.1

raw patch · 2 files changed

+2/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

hzulip.cabal view
@@ -1,5 +1,5 @@ name:                hzulip-version:             0.4.0.0+version:             0.4.0.1 synopsis:            A haskell wrapper for the Zulip API. description:         This a Zulip API wrapper for Haskell. homepage:            https://github.com/yamadapc/hzulip
src/HZulip.hs view
@@ -134,7 +134,7 @@     q <- registerQueue z etypes False     handle (tryAgain q) (loop q)   where tryAgain :: Queue -> SomeException -> IO ()-        tryAgain q = const $ threadDelay 1000000 >> loop q+        tryAgain q = const $ threadDelay 1000000 >> handle (tryAgain q) (loop q)         loop q = getEvents z q False >>=                  \(q', evts) -> mapM_ f evts >>                                 loop q'