Browse Source

Fix jack_control handling of dbus bytes

Prior to this, `jack_control dps dither s` would return an error.
tags/v1.9.15
Joshua Rubin Filipe Coelho <falktx@falktx.com> 4 years ago
parent
commit
ba28ffa3db
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      example-clients/jack_control

+ 1
- 1
example-clients/jack_control View File

@@ -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":


Loading…
Cancel
Save