Quotes around the deadbeef string to prevent parsing errors by deadbeef

This commit is contained in:
Joshua Barrass 2020-08-11 00:54:35 +01:00
parent f8d035c079
commit 9e04e0a27b
No known key found for this signature in database
GPG key ID: 8FDD085351BD1FF0

View file

@ -114,7 +114,7 @@ class Module(core.module.Module):
self._song = "" self._song = ""
return return
## perform the actual query -- these can be much more sophisticated ## perform the actual query -- these can be much more sophisticated
data = util.cli.execute(self.now_playing_tf + self._tf_format) data = util.cli.execute(self.now_playing_tf + '"'+self._tf_format+'"')
self._song = data self._song = data
def update_standard(self, widgets): def update_standard(self, widgets):