forked from platypush/platypush
player_id should be optional in media.kodi.stop
This commit is contained in:
parent
fc7fa37010
commit
2dac094aea
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ class MediaKodiPlugin(Plugin):
|
|||
return (result.get('result'), result.get('error'))
|
||||
|
||||
@action
|
||||
def stop(self, player_id, *args, **kwargs):
|
||||
def stop(self, player_id=None, *args, **kwargs):
|
||||
"""
|
||||
Stop the current media
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue