mirror of https://gitlab.com/bashrc2/epicyon
Check for dictionary
parent
33c1ad11f5
commit
45c7da2a8c
|
@ -532,6 +532,8 @@ def html_profile_after_search(authorized: bool,
|
||||||
minimize_all_images = True
|
minimize_all_images = True
|
||||||
i = 0
|
i = 0
|
||||||
for item in user_feed:
|
for item in user_feed:
|
||||||
|
if not isinstance(item, dict):
|
||||||
|
continue
|
||||||
if item.get('type') and item.get('object'):
|
if item.get('type') and item.get('object'):
|
||||||
if str(item['type']) == 'Announce' and \
|
if str(item['type']) == 'Announce' and \
|
||||||
isinstance(item['object'], str):
|
isinstance(item['object'], str):
|
||||||
|
|
Loading…
Reference in New Issue