mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix for merge - part of 1.1.15
Report playstate change when it happens.
This commit is contained in:
parent
54a12ae6f5
commit
9bb587bc66
1 changed files with 2 additions and 0 deletions
|
@ -149,6 +149,8 @@ class WebSocketThread(threading.Thread):
|
|||
self.logMsg("Playback Seek : " + str(seekPositionTicks))
|
||||
seekTime = (seekPositionTicks / 1000) / 10000
|
||||
xbmc.Player().seekTime(seekTime)
|
||||
# Report playback
|
||||
WINDOW.setProperty('commandUpdate', 'true')
|
||||
|
||||
elif(messageType != None and messageType == "UserDataChanged"):
|
||||
# for now just do a full playcount sync
|
||||
|
|
Loading…
Reference in a new issue