Don't include collections in tags

This commit is contained in:
xnappo 2015-03-22 16:48:17 -05:00
parent a3b42a0447
commit 263500da34
1 changed files with 1 additions and 2 deletions

View File

@ -228,11 +228,10 @@ class ReadEmbyDB():
type = item.get("CollectionType")
if type == None:
type = "None" # User may not have declared the type
if type == type:
if type == type and item.get("Name") != "Collections":
collections.append( {'title' : item.get("Name"),
'type' : type,
'id' : item.get("Id")})
print "paco!" + str (collections)
return collections
def getViewCollections(self, type):