forked from platypush/platypush
Run get_plugin at every iteration of the mpd backend in case the plugin lost the connection and has been reloaded
This commit is contained in:
parent
1a01b336b7
commit
607ec2812c
1 changed files with 1 additions and 1 deletions
|
@ -24,12 +24,12 @@ class MusicMpdBackend(Backend):
|
||||||
def run(self):
|
def run(self):
|
||||||
super().run()
|
super().run()
|
||||||
|
|
||||||
plugin = get_plugin('music.mpd')
|
|
||||||
last_state = None
|
last_state = None
|
||||||
last_track = None
|
last_track = None
|
||||||
last_playlist = None
|
last_playlist = None
|
||||||
|
|
||||||
while not self.should_stop():
|
while not self.should_stop():
|
||||||
|
plugin = get_plugin('music.mpd')
|
||||||
status = plugin.status().output
|
status = plugin.status().output
|
||||||
track = plugin.currentsong().output
|
track = plugin.currentsong().output
|
||||||
state = status['state'].lower()
|
state = status['state'].lower()
|
||||||
|
|
Loading…
Reference in a new issue