Fix for merge - part of 1.1.15

Report playstate change when it happens.
This commit is contained in:
angelblue05 2015-07-20 01:36:58 -05:00
parent 54a12ae6f5
commit 9bb587bc66
1 changed files with 2 additions and 0 deletions

View File

@ -149,6 +149,8 @@ class WebSocketThread(threading.Thread):
self.logMsg("Playback Seek : " + str(seekPositionTicks)) self.logMsg("Playback Seek : " + str(seekPositionTicks))
seekTime = (seekPositionTicks / 1000) / 10000 seekTime = (seekPositionTicks / 1000) / 10000
xbmc.Player().seekTime(seekTime) xbmc.Player().seekTime(seekTime)
# Report playback
WINDOW.setProperty('commandUpdate', 'true')
elif(messageType != None and messageType == "UserDataChanged"): elif(messageType != None and messageType == "UserDataChanged"):
# for now just do a full playcount sync # for now just do a full playcount sync