fix crash when seeking to play

This commit is contained in:
im85288 2015-03-25 15:43:12 +00:00
parent 28862b309c
commit 284983f529
1 changed files with 2 additions and 2 deletions

View File

@ -306,8 +306,8 @@ class Player( xbmc.Player ):
count = 0
while xbmc.Player().getTime() < (seekToTime - 5) and count < 11: # only try 10 times
count = count + 1
xbmc.Player().pause
#xbmc.Player().pause()
xbmc.sleep(100)
xbmc.Player().seekTime(seekToTime)
xbmc.sleep(100)
xbmc.Player().play()
#xbmc.Player().play()