mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-05-19 07:45:07 +00:00
Fix watched status issue
Caused by intros.
This commit is contained in:
parent
e6dcf1333c
commit
3f111f554e
3 changed files with 9 additions and 5 deletions
|
@ -136,7 +136,6 @@ class Player(xbmc.Player):
|
|||
|
||||
#self.set_audio_subs(item.get('forcedaudio'), item.get('forcedsubs'))
|
||||
|
||||
window('emby_skipWatched%s' % item_id, value="true")
|
||||
customseek = window('emby_customPlaylist.seektime')
|
||||
if window('emby_customPlaylist') == "true" and customseek:
|
||||
# Start at, when using custom playlist (play to Kodi from webclient)
|
||||
|
@ -457,7 +456,7 @@ class Player(xbmc.Player):
|
|||
playMethod = data['playmethod']
|
||||
|
||||
# Prevent manually mark as watched in Kodi monitor
|
||||
window('emby_skipWatched%s' % itemid, value="true")
|
||||
window('emby.skip.%s' % itemid, value="true")
|
||||
|
||||
self.stopPlayback(data)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue