Skip to content

Commit

Permalink
Merge pull request #3 from nickrbogdanov/playback-seek-exception
Browse files Browse the repository at this point in the history
Fix onPlayBackSeek() backtraces
  • Loading branch information
void-spark authored Oct 19, 2022
2 parents b8998a1 + dc60114 commit 113983e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin.service.mqtt/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,10 @@ def onPlayBackEnded(self):
def onPlayBackStopped(self):
setplaystate(0,"stopped")

def onPlayBackSeek(self):
def onPlayBackSeek(self, time, seek_offset):
publishprogress()

def onPlayBackSeekChapter(self):
def onPlayBackSeekChapter(self, chapter):
publishprogress()

def onPlayBackSpeedChanged(self,speed):
Expand Down

0 comments on commit 113983e

Please sign in to comment.