Fixes for user views in case we decide to use them

This commit is contained in:
xnappo 2015-05-03 09:42:37 -05:00
parent e91d2ff2a7
commit 76691ea687

View file

@ -246,13 +246,13 @@ class ReadEmbyDB():
Name = view[u'Name']
total = str(view[u'ChildCount'])
type = view[u'CollectionType']
if type == None:
type = "None" # User may not have declared the type
if type == type:
itemtype = view[u'CollectionType']
if itemtype == None:
itemtype = "movies" # User may not have declared the type
if itemtype == type:
collections.append( {'title' : Name,
'type' : type,
'id' : view[u'Id']})
'type' : type,
'id' : view[u'Id']})
return collections
def getBoxSets(self):