diff --git a/webinterface.py b/webinterface.py index 6528b6a6c..435efeb38 100644 --- a/webinterface.py +++ b/webinterface.py @@ -5588,6 +5588,8 @@ def individualPostAsHtml(allowDownloads: bool, if boxName == 'tlblog': if postJsonObject['object'].get('tag'): for tagJson in postJsonObject['object']['tag']: + if not isinstance(tagJson, dict): + continue if not tagJson.get('type'): continue if tagJson['type'] != 'Article':