Ignored photo_tag until compose_* functions are modified

This commit is contained in:
Manuel Cortez 2016-04-04 10:22:50 -05:00
parent b8439903f3
commit 5a57cb965d

View File

@ -141,7 +141,7 @@ class vkSession(object):
self.db[name]["items"] = []
first_addition = True
for i in data:
if i.has_key("type") and i["type"] == "wall_photo": continue
if i.has_key("type") and (i["type"] == "wall_photo" or i["type"] == "photo_tag"): continue
if find_item(self.db[name]["items"], i) == False:
# if i not in self.db[name]["items"]:
if first_addition == True or show_nextpage == True: