Closed WhichMatt closed 5 years ago
Sorry for the delay. You're absolutely right, that Dbus call is not working and the one you suggested does the job well. I was running a patched version of this package and didn't remember :disappointed:
I was reading a lot about CLOS in the past time, so I ported this package to EIEIO (sort of the Emacs Lisp version of CLOS). In this port, the fix you propose is implemented and some new features are coming to life!
I already pushed it into this repo, please give it a try and tell me if all things work well!
Thank you very much
I had an issue while testing this package on Debian. The API calls would work fine, but when sending the commands through dbus, I would get the message:
I found that the function
counsel-spotify-format-play-linux
usedformat
to supply the uri. Unfortunately, the escaping of"
wasn't working on my computer ((format "OpenUri \"string:%s\"" "test")
would returnOpenUri \"string:test\"
instead ofOpenUri "string:test"
)Testing with the change
appears to work fine.