diff --git a/plugins/pm_filter.py b/plugins/pm_filter.py index 5e9bf455..f413ca3b 100644 --- a/plugins/pm_filter.py +++ b/plugins/pm_filter.py @@ -116,8 +116,7 @@ async def next_page(bot, query): ) btn.insert(0, [ - InlineKeyboardButton("⭕️ Movie", url="https://t.me/+26XbUS8O3cM1MDU1"), - InlineKeyboardButton("Series ⭕️", url="https://t.me/+VWYQKLaIim4yNjk1") + ]) btn.insert(0, [ @@ -382,11 +381,10 @@ async def cb_handler(client: Client, query: CallbackQuery): f_caption = f"{files.file_name}" buttons = [ [ - InlineKeyboardButton('⭕️ Support', url='https://t.me/JOSPSupport'), - InlineKeyboardButton('Channel ⭕️', url='https://t.me/JosProjects') + ], [ - InlineKeyboardButton('🎬 Series & Movie Club 🎬', url=f'https://t.me/+y53tWFUw6Q43NzE9') + ] ] @@ -405,7 +403,7 @@ async def cb_handler(client: Client, query: CallbackQuery): reply_markup=InlineKeyboardMarkup(buttons), protect_content=True if ident == "filep" else False ) - await query.answer('Check PM, I have sent files in pm', show_alert=False) + await query.answer('📥 Check PM, I have sent files in pm 📩', show_alert=False) except UserIsBlocked: await query.answer('Unblock the bot mahn !', show_alert=True) except PeerIdInvalid: @@ -462,8 +460,7 @@ async def cb_handler(client: Client, query: CallbackQuery): ],[ InlineKeyboardButton('🕵️ Search here Movie 🕵️', switch_inline_query_current_chat='') ],[ - InlineKeyboardButton('⭕️ Updates', url='https://t.me/josprojects'), - InlineKeyboardButton('Movie Club ⭕️', url='https://t.me/+y53tWFUw6Q43NzE9') + ],[ InlineKeyboardButton('❌ Close the Menu ❌', callback_data='close_data') ]] @@ -938,11 +935,10 @@ async def auto_filter(client, msg, spoll=False): ) btn.insert(0, [ - InlineKeyboardButton("⭕️ Movie", url="https://t.me/+26XbUS8O3cM1MDU1"), - InlineKeyboardButton("Series ⭕️", url="https://t.me/+VWYQKLaIim4yNjk1") + ]) btn.insert(0, [ - InlineKeyboardButton("⭕️ Join Our Channel ⭕️",url="https://t.me/imdbprobots/4") + ") ]) reply_id = message.reply_to_message.message_id if message.reply_to_message else message.message_id imdb = await get_poster(search, file=(files[0]).file_name) if settings["imdb"] else None @@ -980,7 +976,7 @@ async def auto_filter(client, msg, spoll=False): **locals() ) else: - cap = f"🎬 Title: {search}\n\n© IMDb (Series & Movies) Studio\n\n✍️ Note: This message will be Auto-deleted after 10 hours to avoid copyright issues." + cap = f"🎬 Title: {search}\n\n© IMDb (Series & Movies) Studio\n\n✍️ Note: This message will be Auto-deleted after 10 hours to avoid copyright issues." if imdb and imdb.get('poster'): try: hehe = await message.reply_photo(photo=imdb.get('poster'), caption=cap[:1024], reply_to_message_id=reply_id, reply_markup=InlineKeyboardMarkup(btn))