Add extra check (fix)

Called wrong class
This commit is contained in:
angelblue05 2017-08-09 05:06:46 -05:00
parent 8858860015
commit d1054896bc

View file

@ -94,7 +94,7 @@ class KodiMonitor(xbmc.Monitor):
try:
kodi_id = None
if KODI >= 17 and self.isPlaying() and data['item']['type'] != "song":
if KODI >= 17 and xbmc.Player().isPlaying() and data['item']['type'] != "song":
item = xbmc.Player().getVideoInfoTag()
kodi_id = item.getDbId()
item_type = item.getMediaType()