Don't handle Hidden User messages if it's a reply

This commit is contained in:
blank X 2021-02-11 19:43:58 +07:00
parent 5d27a6d911
commit e89e1b5667
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ async def main():
return
if reply.forward and reply.forward.sender_id:
user = await reply.forward.get_input_sender()
elif match := hidden_fwd_regex.match(reply.raw_text):
elif not reply.forward and match := hidden_fwd_regex.match(reply.raw_text):
user = InputPeerUser(int(match.group(1)), int(match.group(2)))
else:
return