Fix KeyError for Kodi playerids

This commit is contained in:
croneter 2018-02-03 16:43:39 +01:00
parent fd4422fa65
commit a6ce6ae8d2
1 changed files with 4 additions and 4 deletions

View File

@ -91,15 +91,15 @@ ACTIVE_PLAYERS = []
# Kodi player states - here, initial values are set
PLAYER_STATES = {
0: {},
1: {},
2: {},
3: {}
2: {}
}
# The LAST playstate once playback is finished
OLD_PLAYER_STATES = {
0: {},
1: {},
2: {},
3: {}
2: {}
}
# "empty" dict for the PLAYER_STATES above
PLAYSTATE = {