Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
API_HASH = os.environ.get("API_HASH")
BOT_TOKEN = os.environ.get("BOT_TOKEN")
ASSISTANT_SESSION = os.environ.get("ASSISTANT_SESSION")
OWNER_ID = int(os.getenv("OWNER_ID", "5268762773"))
OWNER_ID = int(os.getenv("OWNER_ID", "7999900761"))

# ——— Monkey-patch resolve_peer ——————————————
logging.getLogger("pyrogram").setLevel(logging.ERROR)
Expand Down Expand Up @@ -387,7 +387,7 @@ async def start_handler(_, message):

caption = (
f"👋 нєу {user_link} 💠, 🥀\n\n"
f">🎶 𝗪𝗘𝗟𝗖𝗢𝗠𝗘 𝗧𝗢 {BOT_NAME.upper()}! 🎵\n"
f">🎶 𝗪𝗘𝗟𝗖𝗢𝗠𝗘 𝗧𝗢 {T-Seriesmusic}! 🎵\n"
">🚀 𝗧𝗢𝗣-𝗡𝗢𝗧𝗖𝗛 24×7 𝗨𝗣𝗧𝗜𝗠𝗘 & 𝗦𝗨𝗣𝗣𝗢𝗥𝗧\n"
">🔊 𝗖𝗥𝗬𝗦𝗧𝗔𝗟-𝗖𝗟𝗘𝗔𝗥 𝗔𝗨𝗗𝗜𝗢\n"
">🎧 𝗦𝗨𝗣𝗣𝗢𝗥𝗧𝗘𝗗 𝗣𝗟𝗔𝗧𝗙𝗢𝗥𝗠𝗦: YouTube | Spotify | Resso | Apple Music | SoundCloud\n"
Expand All @@ -400,11 +400,12 @@ async def start_handler(_, message):
buttons = [
[
InlineKeyboardButton(f"➕ {add_me_text}", url=f"{BOT_LINK}?startgroup=true"),
InlineKeyboardButton(f"📢 {updates_text}", url="https://t.me/vibeshiftbots")
InlineKeyboardButton(f"📢 {updates_text}", url="https://t.me/bollywoodmusicsupport1")
],
[
InlineKeyboardButton(f"💬 {support_text}", url="https://t.me/Frozensupport1"),
InlineKeyboardButton(f"❓ {help_text}", callback_data="show_help")
InlineKeyboardButton(f"💬 {support_text}", url="https://t.me/bollywoodmusicsupport"),
InlineKeyboardButton(f"❓ {help_text}", callback_data="show_help"),
InlineKeyboardButton(f"👑 {owner}", callback_data="@adityathedevloper")
]
]
reply_markup = InlineKeyboardMarkup(buttons)
Expand Down Expand Up @@ -442,7 +443,7 @@ async def go_back_callback(_, callback_query):

caption = (
f"👋 нєу {user_link} 💠, 🥀\n\n"
f">🎶 𝗪𝗘𝗟𝗖𝗢𝗠𝗘 𝗧𝗢 {BOT_NAME.upper()}! 🎵\n"
f">🎶 𝗪𝗘𝗟𝗖𝗢𝗠𝗘 𝗧𝗢 {T-Seriesmusic}! 🎵\n"
">🚀 𝗧𝗢𝗣-𝗡𝗢𝗧𝗖𝗛 24×7 𝗨𝗣𝗧𝗜𝗠𝗘 & 𝗦𝗨𝗣𝗣𝗢𝗥𝗧\n"
">🔊 𝗖𝗥𝗬𝗦𝗧𝗔𝗟-𝗖𝗟𝗘𝗔𝗥 𝗔𝗨𝗗𝗜𝗢\n"
">🎧 𝗦𝗨𝗣𝗣𝗢𝗥𝗧𝗘𝗗 𝗣𝗟𝗔𝗧𝗙𝗢𝗥𝗠𝗦: YouTube | Spotify | Resso | Apple Music | SoundCloud\n"
Expand All @@ -459,7 +460,9 @@ async def go_back_callback(_, callback_query):
],
[
InlineKeyboardButton(f"💬 {support_text}", url="https://t.me/Frozensupport1"),
InlineKeyboardButton(f"❓ {help_text}", callback_data="show_help")
InlineKeyboardButton(f"❓ {help_text}", callback_data="show_help"),
InlineKeyboardButton(f"👑 {help_owner}", url="@adityathedevloper")

]
]
reply_markup = InlineKeyboardMarkup(buttons)
Expand Down