Merge pull request #690 from joshbarrass/deadbeef-patch

Quotes around the deadbeef string to prevent parsing errors by deadbeef
This commit is contained in:
tobi-wan-kenobi 2020-08-11 06:16:58 +02:00 committed by GitHub
commit d759ed5051
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -114,7 +114,7 @@ class Module(core.module.Module):
self._song = ""
return
## 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
def update_standard(self, widgets):