You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
first_message=awaitclient.ask(text="Forward the First Message from DB Channel (with Quotes)..\n\nor Send the Post Link", chat_id=message.from_user.id, filters=(filters.forwarded| (filters.text&~filters.forwarded)), timeout=30)
13
+
first_message=awaitclient.ask(text="Forward the First Message from DB Channel (with Quotes)..\n\nor Send the DB Channel Post Link", chat_id=message.from_user.id, filters=(filters.forwarded| (filters.text&~filters.forwarded)), timeout=30)
awaitfirst_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)
20
+
awaitfirst_message.reply("❌ Error\n\nthis Forwarded Post is not from my DB Channel or this Link is taken from DB Channel", quote=True)
19
21
continue
20
22
21
23
whileTrue:
22
24
try:
23
-
second_message=awaitclient.ask(text="Forward the Last Message from DB Channel (with Quotes)..\nor Send the Post Link", chat_id=message.from_user.id, filters=(filters.forwarded| (filters.text&~filters.forwarded)), timeout=30)
25
+
second_message=awaitclient.ask(text="Forward the Last Message from DB Channel (with Quotes)..\nor Send the DB Channel Post link", chat_id=message.from_user.id, filters=(filters.forwarded| (filters.text&~filters.forwarded)), timeout=30)
channel_message=awaitclient.ask(text="Forward Message from the DB Channel (with Quotes)..", chat_id=message.from_user.id, filters=filters.forwarded, timeout=30)
47
+
channel_message=awaitclient.ask(text="Forward Message from the DB Channel (with Quotes)..\nor Send the DB Channel Post link", chat_id=message.from_user.id, filters=filters.forwarded, timeout=30)
0 commit comments