diff --git a/posts.py b/posts.py index c4a5784d..88775c5e 100644 --- a/posts.py +++ b/posts.py @@ -661,7 +661,8 @@ def postIsAddressedToFollowers(baseDir: str, return False toList=[] ccList=[] - if isinstance(postJsonObject['object'], dict): + if postJsonObject['type']!='Update' and \ + isinstance(postJsonObject['object'], dict): if not postJsonObject['object'].get('to'): return False toList=postJsonObject['object']['to']