summaryrefslogtreecommitdiff
path: root/Utility/DBus.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Utility/DBus.hs')
-rw-r--r--Utility/DBus.hs10
1 files changed, 2 insertions, 8 deletions
diff --git a/Utility/DBus.hs b/Utility/DBus.hs
index 108ef735b..5b0470301 100644
--- a/Utility/DBus.hs
+++ b/Utility/DBus.hs
@@ -22,14 +22,8 @@ type ServiceName = String
listServiceNames :: Client -> IO [ServiceName]
listServiceNames client = do
- active <- do
- reply <- callDBus client "ListNames" []
- return $ fromVariant =<< headMaybe (methodReturnBody reply)
- activatable <- do
- reply <- callDBus client "ListActivatableNames" []
- return $ fromVariant =<< headMaybe (methodReturnBody reply)
- let service_names = fromMaybe [] active ++ fromMaybe [] activatable
- return service_names
+ reply <- callDBus client "ListNames" []
+ return $ fromMaybe [] $ fromVariant =<< headMaybe (methodReturnBody reply)
callDBus :: Client -> MemberName -> [Variant] -> IO MethodReturn
callDBus client name params = call_ client $