Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
reysiregar authored Aug 2, 2021
1 parent 810a830 commit a4edd20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions handlers/play.py
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ async def play(_, message: Message):
toxxt = "⚡ __choose the song you want to play:__\n\n"
j = 0
useer=user_name
emojilist = ["1️⃣","2️⃣","3️⃣","4️⃣","5️⃣",]
emojilist = ["1️⃣","2️⃣","3️⃣","4️⃣","5️⃣"]

while j < 5:
toxxt += f"{emojilist[j]} [{results[j]['title']}](https://youtube.com{results[j]['url_suffix']})\n"
Expand Down Expand Up @@ -745,7 +745,7 @@ async def lol_cb(b, cb):
appendable = [s_name, r_by, loc]
qeue.append(appendable)
await cb.message.delete()
await cb.reply_photo(chat_id,
await b.reply_photo(chat_id,
photo="final.png",
caption = f"🏷 **Judul:** [{title[:60]}]({url})\n⏱ **Durasi:** {duration}\n💡 **Status:** Antrian Ke `{position}`\n" \
+ f"🔮 **Permintaan:** {r_by.mention}",
Expand All @@ -765,7 +765,7 @@ async def lol_cb(b, cb):

callsmusic.pytgcalls.join_group_call(chat_id, file_path)
await cb.message.delete()
await cb.reply_photo(chat_id,
await b.reply_photo(chat_id,
photo="final.png",
caption = f"🏷 **Judul:** [{title[:60]}]({url})\n⏱ **Durasi:** {duration}\n💡 **Status:** Sedang Memutar\n" \
+ f"🔮 **Permintaan:** {r_by.mention}",
Expand Down

0 comments on commit a4edd20

Please sign in to comment.