Skip to content
Snippets Groups Projects
Commit c536b733 authored by 42loop's avatar 42loop
Browse files

fixed publishstat() error

parent 05bb4b97
Branches
No related tags found
No related merge requests found
......@@ -197,7 +197,7 @@ class MQTTPlayer(xbmc.Player):
def onPlayBackStarted(self):
setplaystate(1,"started")
publishstat()
publishstatus()
def onPlayBackPaused(self):
setplaystate(2,"paused")
......@@ -207,11 +207,11 @@ class MQTTPlayer(xbmc.Player):
def onPlayBackEnded(self):
setplaystate(0,"ended")
publishstat()
publishstatus()
def onPlayBackStopped(self):
setplaystate(0,"stopped")
publishstat()
publishstatus()
def onPlayBackSeek(self):
publishprogress()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment