You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just found out the deckmaster will always run DBus methods with the signature 's'. This causes any methods with different signatures (including no parameters signature) to result in the message dbus call failed: No such method '<METHOD>' in any interface at object path '<PATH>' (signature 's')
I did try setting the value the way the dbus-send command uses, setting it to int32:4 for the method I was trying to call, which a signature 'i', but that didn't work either. Seems there's no way to use the built in DBus capabilities to access these methods.
My workaround is just using exec with either qdbus or dbus-send, incase anyone ends up here looking for answers.
The text was updated successfully, but these errors were encountered:
Just found out the deckmaster will always run DBus methods with the signature 's'. This causes any methods with different signatures (including no parameters signature) to result in the message
dbus call failed: No such method '<METHOD>' in any interface at object path '<PATH>' (signature 's')
I did try setting the value the way the
dbus-send
command uses, setting it toint32:4
for the method I was trying to call, which a signature 'i', but that didn't work either. Seems there's no way to use the built in DBus capabilities to access these methods.My workaround is just using exec with either
qdbus
ordbus-send
, incase anyone ends up here looking for answers.The text was updated successfully, but these errors were encountered: