diff options
author | Joey Hess <joeyh@joeyh.name> | 2016-01-22 16:09:50 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-01-22 16:09:50 -0400 |
commit | 2a756eabe28658eb5f35fe7bbac078c27c79be8b (patch) | |
tree | a42540f5cb44cef24f8f10baf4ac05dc97085f43 /Assistant | |
parent | 584a7e9a5962d7f2bfc499391dfdbde0ce4f2fb2 (diff) |
assistant: Added new name used for udisks2 dbus service in gnome 3.18.
Diffstat (limited to 'Assistant')
-rw-r--r-- | Assistant/Threads/MountWatcher.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Assistant/Threads/MountWatcher.hs b/Assistant/Threads/MountWatcher.hs index 3ccdd1adc..0367c7b1a 100644 --- a/Assistant/Threads/MountWatcher.hs +++ b/Assistant/Threads/MountWatcher.hs @@ -95,9 +95,10 @@ checkMountMonitor client = do ] return True where - startableservices = [gvfs, gvfsgdu] + startableservices = [gvfsnew, gvfs, gvfsgdu] usableservices = startableservices ++ [kde] gvfs = "org.gtk.Private.UDisks2VolumeMonitor" + gvfsnew = "org.gtk.vfs.UDisks2VolumeMonitor" gvfsgdu = "org.gtk.Private.GduVolumeMonitor" kde = "org.kde.DeviceNotifications" |