mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
Fix video detection in monitor
This commit is contained in:
parent
6be4ffca3d
commit
2003367a21
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ class KodiMonitor(xbmc.Monitor):
|
|||
try:
|
||||
kodi_id = None
|
||||
|
||||
if KODI >= 17 and xbmc.Player().isPlaying() and data['item']['type'] != "song":
|
||||
if KODI >= 17 and xbmc.Player().isPlayingVideo():
|
||||
item = xbmc.Player().getVideoInfoTag()
|
||||
kodi_id = item.getDbId()
|
||||
item_type = item.getMediaType()
|
||||
|
|
Loading…
Reference in a new issue