diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bluez.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bluez.vala b/src/bluez.vala index 808a1cf..f7121d7 100644 --- a/src/bluez.vala +++ b/src/bluez.vala @@ -20,7 +20,7 @@ /** - * Bluetooth implementaion which uses org.bluez on DBus + * Bluetooth implementaion which uses org.bluez on DBus */ public class Bluez: Bluetooth, Object { @@ -285,7 +285,7 @@ public class Bluez: Bluetooth, Object var v = device_proxy.get_cached_property ("Class"); if (v == null) type = Device.Type.OTHER; - else + else type = Device.class_to_device_type (v.get_uint32()); // look up the device's human-readable name |