main2
Bob Mottram 2019-09-23 21:10:04 +01:00
parent 8ea1e3306b
commit b8be75c3f4
1 changed files with 1 additions and 1 deletions

View File

@ -1696,7 +1696,7 @@ def isReply(postJsonObject: {},actor: str) -> bool:
return False return False
if not postJsonObject['object'].get('inReplyTo'): if not postJsonObject['object'].get('inReplyTo'):
return False return False
if not postJsonObject['object']['inReplyTo'].startswith(actor) if not postJsonObject['object']['inReplyTo'].startswith(actor):
return False return False
return True return True