diff --git a/posts.py b/posts.py index 1f303f0b..b9ca67ee 100644 --- a/posts.py +++ b/posts.py @@ -1875,6 +1875,8 @@ def isDM(postJsonObject: {}) -> bool: return False if postJsonObject['object']['type']!='Note': return False + if postJsonObject['object'].get('moderationStatus'): + return False fields=['to','cc'] for f in fields: if not postJsonObject['object'].get(f):