diff --git a/posts.py b/posts.py index ee989d31f..e60d64897 100644 --- a/posts.py +++ b/posts.py @@ -1696,7 +1696,7 @@ def isReply(postJsonObject: {},actor: str) -> bool: return False if not postJsonObject['object'].get('inReplyTo'): return False - if not postJsonObject['object']['inReplyTo'].startswith(actor) + if not postJsonObject['object']['inReplyTo'].startswith(actor): return False return True