Fix ValueError for channels
This commit is contained in:
parent
39d95adda4
commit
a8d4e2b8c1
1 changed files with 1 additions and 1 deletions
|
@ -2558,7 +2558,7 @@ class API():
|
|||
"""
|
||||
Add media stream information to xbmcgui.ListItem
|
||||
"""
|
||||
for key, value in self.getMediaStreams():
|
||||
for key, value in self.getMediaStreams().iteritems():
|
||||
if value:
|
||||
listItem.addStreamInfo(key, value)
|
||||
|
||||
|
|
Loading…
Reference in a new issue