Fix repeat command forward error (#154)

This commit is contained in:
Sam 2021-12-10 23:37:07 +08:00 committed by GitHub
parent 7a01d3a0d0
commit b5428ea0f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@
from telethon.tl.functions.messages import DeleteChatUserRequest
from telethon.tl.functions.channels import LeaveChannelRequest
from telethon.errors import ForbiddenError, AuthKeyError
from telethon.errors.rpcerrorlist import ChatIdInvalidError, FloodWaitError, UserNotParticipantError
from telethon.errors.rpcerrorlist import ChatIdInvalidError, FloodWaitError, UserNotParticipantError, MessageIdInvalidError
from distutils.util import strtobool
from telethon.tl.types import ChannelForbidden
@ -160,9 +160,20 @@ async def re(context):
await context.delete()
except ValueError:
pass
try:
forward_allowed = True
for nums in range(0, num):
await reply.forward_to(int(context.chat_id))
try:
if forward_allowed:
await reply.forward_to(reply.peer_id)
else:
await bot.send_message(reply.peer_id, reply)
except MessageIdInvalidError:
if forward_allowed:
forward_allowed = False
await bot.send_message(reply.peer_id, reply)
else:
await context.respond(lang('re_forbidden'))
return
except ForbiddenError:
return
except FloodWaitError: