main
Bob Mottram 2024-07-26 11:03:22 +01:00
parent 21c3cb485c
commit cca3e96d75
1 changed files with 1 additions and 1 deletions

View File

@ -531,9 +531,9 @@ def html_profile_after_search(authorized: bool,
if nickname in min_images_for_accounts:
minimize_all_images = True
i = 0
print('DEBUG: user feed test: ' + str(user_feed))
for item in user_feed:
if not isinstance(item, dict):
print('DEBUG: invalid user feed item: ' + str(item))
continue
if item.get('type') and item.get('object'):
if str(item['type']) == 'Announce' and \