We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88d12ba commit d71bc13Copy full SHA for d71bc13
plugins/commands.py
@@ -144,7 +144,7 @@ async def batch(client: Client, message: Message):
144
await second_message.reply_text("Forward from the Assigned Channel only...", quote = True)
145
continue
146
string = f"get-{f_msg_id}-{s_msg_id}"
147
- base64_string = await decode(string)
+ base64_string = await encode(string)
148
link = f"https://t.me/{client.username}?start={base64_string}"
149
reply_markup = InlineKeyboardMarkup([[InlineKeyboardButton("🔁 Share URL", url=f'https://telegram.me/share/url?url={link}')]])
150
await second_message.reply_text(f"<b>Here is your link</b>\n\n{link}", quote=True, reply_markup=reply_markup)
0 commit comments