diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2026-01-23 21:47:11 +0100 |
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2026-01-23 21:50:33 +0100 |
| commit | de445ec5a490da6ff22d2789b330f45d5e37765c (patch) | |
| tree | bf5d2de21458c1e1007d516a4c334a735b3545c9 /src/Erebos/Network.hs | |
| parent | 924b0790084aebae13318425045aeaa66e150d5e (diff) | |
Silence error when calling discoverySearch without the service
Diffstat (limited to 'src/Erebos/Network.hs')
| -rw-r--r-- | src/Erebos/Network.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Erebos/Network.hs b/src/Erebos/Network.hs index 6265bbf..b5cfa6b 100644 --- a/src/Erebos/Network.hs +++ b/src/Erebos/Network.hs @@ -1060,7 +1060,7 @@ modifyServiceGlobalState server proxy f = do putTMVar (serverServiceStates server) global' return res Nothing -> do - throwOtherError $ "unhandled service '" ++ show (toUUID svc) ++ "'" + throwErebosError $ UnhandledService svc foreign import ccall unsafe "Network/ifaddrs.h erebos_join_multicast" cJoinMulticast :: CInt -> Ptr CSize -> IO (Ptr Word32) |