This website works better with JavaScript.
Home
Explore
Help
Sign In
yigitcolakoglu
/
mconnect
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
3
Wiki
Activity
Browse Source
devicemanager-proxy: check if there is a device associated with given path
bboozzoo/dbus-support-interfaces
Maciek Borzecki
8 years ago
parent
e2cd6500b2
commit
3c3687ad59
1 changed files
with
5 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-0
src/mconnect/devicemanager-proxy.vala
+ 5
- 0
src/mconnect/devicemanager-proxy.vala
View File
@ -59,6 +59,11 @@ class DeviceManagerDBusProxy : Object
var dev_proxy = this.devices.@get(path);
if (dev_proxy == null) {
warning("no device under path %s", path);
return;
}
this.manager.allow_device(dev_proxy.device);
}
Write
Preview
Loading…
Cancel
Save