Skip to content

Commit

Permalink
Fix jack_control handling of dbus bytes
Browse files Browse the repository at this point in the history
Prior to this, `jack_control dps dither s` would return an error.
  • Loading branch information
joshuarubin authored and falkTX committed Aug 15, 2020
1 parent 34fb7b6 commit ba28ffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example-clients/jack_control
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down

0 comments on commit ba28ffa

Please sign in to comment.