Another fix bites the dust

This commit is contained in:
Fabio Manganiello 2021-02-03 17:47:33 +01:00
parent 31a7ecee03
commit 7e1d232942
1 changed files with 3 additions and 4 deletions

View File

@ -80,13 +80,12 @@ class MediaCtrlPlugin(Plugin):
except:
try:
player = get_plugin(plugin, reload=True)
status = player.status().output
if status['state'] == PlayerState.PLAY.value or status['state'] == PlayerState.PAUSE.value:
return player
except:
continue
status = player.status().output
if status['state'] == PlayerState.PLAY.value or status['state'] == PlayerState.PAUSE.value:
return player
return None