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
When calling methods that return a single result, the asynchronous glib.ProxyInterface functions return a list with a single item.
The synchronous versions of those methods correctly return just the single result.
I believe the code from here in the synchronous call should be moved up to here in the asynchronous call.
I will have a pull request in shortly.
Thanks,
Micah
The text was updated successfully, but these errors were encountered:
mpnordland
added a commit
to mpnordland/python-dbus-next
that referenced
this issue
Dec 22, 2021
fixesaltdesktop#108
The async method calls on the glib.ProxyInterface class lacked the
ability to unpack a single result while the sync version did do that.
This commit moves unpacking code to the async version so both will
behave correctly.
fixesaltdesktop#108
The async method calls on the glib.ProxyInterface class lacked the
ability to unpack a single result while the sync version did do that.
This commit moves unpacking code to the async version so both will
behave correctly.
garyvdm
pushed a commit
to garyvdm/dbus-ezy
that referenced
this issue
May 10, 2024
fixesaltdesktop#108
The async method calls on the glib.ProxyInterface class lacked the
ability to unpack a single result while the sync version did do that.
This commit moves unpacking code to the async version so both will
behave correctly.
Hello again!
When calling methods that return a single result, the asynchronous glib.ProxyInterface functions return a list with a single item.
The synchronous versions of those methods correctly return just the single result.
I believe the code from here in the synchronous call should be moved up to here in the asynchronous call.
I will have a pull request in shortly.
Thanks,
Micah
The text was updated successfully, but these errors were encountered: