Skip to content

Commit 5bd9955

Browse files
authored
Debug
1 parent 80fb2db commit 5bd9955

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugins/link_generator.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ async def batch(client: Client, message: Message):
1515
if f_msg_id:
1616
break
1717
else:
18-
await f_msg_id.reply("<b>❌ Error\n\nthis Forwarded Post is not from my DB Channel or this Link is taken from DB Channel</b>" quote = True)
18+
await first_message.reply("<b>❌ Error\n\nthis Forwarded Post is not from my DB Channel or this Link is taken from DB Channel</b>", quote = True)
1919
continue
2020

2121
while True:
@@ -27,7 +27,7 @@ async def batch(client: Client, message: Message):
2727
if s_msg_id:
2828
break
2929
else:
30-
await second_message.reply("<b>❌ Error\n\nthis Forwarded Post is not from my DB Channel or this Link is taken from DB Channel</b>" quote = True)
30+
await second_message.reply("<b>❌ Error\n\nthis Forwarded Post is not from my DB Channel or this Link is taken from DB Channel</b>", quote = True)
3131
continue
3232

3333

@@ -49,7 +49,7 @@ async def link_generator(client: Client, message: Message):
4949
if msg_id:
5050
break
5151
else:
52-
await channel_message.reply("<b>❌ Error\n\nthis Forwarded Post is not from my DB Channel or this Link is taken from DB Channel</b>" quote = True)
52+
await channel_message.reply("<b>❌ Error\n\nthis Forwarded Post is not from my DB Channel or this Link is taken from DB Channel</b>", quote = True)
5353

5454

5555
base64_string = await encode(f"get-{msg_id * abs(client.db_channel.id)}")

0 commit comments

Comments
 (0)