Fix capitalization
This commit is contained in:
parent
9c74fd4a98
commit
2ca4ad7b6c
2 changed files with 3 additions and 3 deletions
|
@ -305,7 +305,7 @@ class Player(xbmc.Player):
|
|||
|
||||
self.stopAll()
|
||||
|
||||
window('Plex_currently_playing_itemid', clear=True)
|
||||
window('plex_currently_playing_itemid', clear=True)
|
||||
window('plex_customplaylist', clear=True)
|
||||
window('plex_customplaylist.seektime', clear=True)
|
||||
window('plex_customplaylist.seektime', clear=True)
|
||||
|
|
|
@ -102,7 +102,7 @@ class SubscriptionManager:
|
|||
while not keyid:
|
||||
if count > 300:
|
||||
break
|
||||
keyid = window('Plex_currently_playing_itemid')
|
||||
keyid = window('plex_currently_playing_itemid')
|
||||
xbmc.sleep(100)
|
||||
count += 1
|
||||
if keyid:
|
||||
|
@ -149,7 +149,7 @@ class SubscriptionManager:
|
|||
self.cleanup()
|
||||
# Don't tell anyone if we don't know a Plex ID and are still playing
|
||||
# (e.g. no stop called). Used for e.g. PVR/TV without PKC usage
|
||||
if (not window('Plex_currently_playing_itemid')
|
||||
if (not window('plex_currently_playing_itemid')
|
||||
and not self.lastplayers):
|
||||
return True
|
||||
players = self.js.getPlayers()
|
||||
|
|
Loading…
Reference in a new issue