Fix SyntaxError
This commit is contained in:
parent
e89e1b5667
commit
4ac0d187d1
2
rias.py
2
rias.py
|
@ -145,7 +145,7 @@ async def main():
|
|||
return
|
||||
if reply.forward and reply.forward.sender_id:
|
||||
user = await reply.forward.get_input_sender()
|
||||
elif not reply.forward and match := hidden_fwd_regex.match(reply.raw_text):
|
||||
elif (match := hidden_fwd_regex.match(reply.raw_text)) and not reply.forward:
|
||||
user = InputPeerUser(int(match.group(1)), int(match.group(2)))
|
||||
else:
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue