Merge pull request #1713 from croneter/py3-keyerror
Fix KeyError on playback startup
This commit is contained in:
commit
867bb0aa7a
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ class PlaylistItem(object):
|
||||||
# playback startup, e.g. a Kodi audio index of 1953718901 (!)
|
# playback startup, e.g. a Kodi audio index of 1953718901 (!)
|
||||||
try:
|
try:
|
||||||
index = function(self.playerid)
|
index = function(self.playerid)
|
||||||
except (TypeError, IndexError):
|
except (TypeError, IndexError, KeyError):
|
||||||
# No sensible reply yet
|
# No sensible reply yet
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue