Browse Source
Fix jack_control handling of dbus bytes
Prior to this, `jack_control dps dither s` would return an error.
pull/626/head
Joshua Rubin
GitHub
5 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
example-clients/jack_control
|
|
|
@@ -43,7 +43,7 @@ def python_type_to_jackdbus_type(value, type_char): |
|
|
|
if type_char == "b": |
|
|
|
return bool_convert(value); |
|
|
|
elif type_char == "y": |
|
|
|
return dbus.Byte(value); |
|
|
|
return dbus.Byte(ord(value)); |
|
|
|
elif type_char == "i": |
|
|
|
return dbus.Int32(value) |
|
|
|
elif type_char == "u": |
|
|
|
|