Skip to content

Commit d2b27d2

Browse files
authored
feat: multi channel support
1 parent 10f63fb commit d2b27d2

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

bot.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is part of the ChannelAutoForwarder distribution (https://github.com/xditya/ChannelAutoForwarder).
2-
# Copyright (c) 2021 Adiya
2+
# Copyright (c) 2021-2022 Aditya
33
#
44
# This program is free software: you can redistribute it and/or modify
55
# it under the terms of the GNU General Public License as published by
@@ -16,7 +16,6 @@
1616
import asyncio
1717
from telethon import TelegramClient, events, Button
1818
from decouple import config
19-
from telethon.tl.functions.users import GetFullUserRequest
2019

2120
logging.basicConfig(format='[%(levelname) 5s/%(asctime)s] %(name)s: %(message)s', level=logging.INFO)
2221

@@ -26,8 +25,8 @@
2625
apiid = config("APP_ID", cast=int)
2726
apihash = config("API_HASH")
2827
bottoken = config("BOT_TOKEN")
29-
frm = config("FROM_CHANNEL", cast=int)
30-
tochnl = config("TO_CHANNEL", cast=int)
28+
frm = config("FROM_CHANNEL", cast=lambda x: [int(_) for _ in x.split(" ")])
29+
tochnl = config("TO_CHANNEL", cast=lambda x: [int(_) for _ in x.split(" ")])
3130
datgbot = TelegramClient('bot', apiid, apihash).start(bot_token=bottoken)
3231
except:
3332
print("Environment vars are missing! Kindly recheck.")
@@ -46,7 +45,7 @@ async def helpp(event):
4645

4746
@datgbot.on(events.NewMessage(incoming=True, chats=frm))
4847
async def _(event):
49-
if not event.is_private:
48+
for tochnl in tochnl:
5049
try:
5150
if event.poll:
5251
return
@@ -57,10 +56,10 @@ async def _(event):
5756
try:
5857
if event.media.webpage:
5958
await datgbot.send_message(tochnl, event.text, link_preview = False)
60-
return
6159
except:
6260
media = event.media.document
6361
await datgbot.send_file(tochnl, media, caption = event.text, link_preview = False)
62+
finally:
6463
return
6564
else:
6665
await datgbot.send_message(tochnl, event.text, link_preview = False)

0 commit comments

Comments
 (0)