some fixes

This commit is contained in:
levina 2022-02-11 05:55:25 +07:00 committed by GitHub
parent 844f5552f5
commit a4577e50f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -113,7 +113,7 @@ async def resume(client, m: Message):
chat_id = m.chat.id chat_id = m.chat.id
if chat_id in QUEUE: if chat_id in QUEUE:
try: try:
if not await is_music_playing(chat_id): if await is_music_playing(chat_id):
await m.reply(" The music is already resumed.") await m.reply(" The music is already resumed.")
return return
await calls.resume_stream(chat_id) await calls.resume_stream(chat_id)
@ -217,7 +217,7 @@ async def unmute(client, m: Message):
chat_id = m.chat.id chat_id = m.chat.id
if chat_id in QUEUE: if chat_id in QUEUE:
try: try:
if not await is_music_playing(chat_id): if await is_music_playing(chat_id):
await m.reply(" The stream userbot is already unmuted.") await m.reply(" The stream userbot is already unmuted.")
return return
await calls.unmute_stream(chat_id) await calls.unmute_stream(chat_id)
@ -267,7 +267,7 @@ async def cbresume(_, query: CallbackQuery):
chat_id = query.message.chat.id chat_id = query.message.chat.id
if chat_id in QUEUE: if chat_id in QUEUE:
try: try:
if not await is_music_playing(chat_id): if await is_music_playing(chat_id):
await query.answer(" The music is already resumed.") await query.answer(" The music is already resumed.")
return return
await calls.resume_stream(chat_id) await calls.resume_stream(chat_id)
@ -337,7 +337,7 @@ async def cbunmute(_, query: CallbackQuery):
chat_id = query.message.chat.id chat_id = query.message.chat.id
if chat_id in QUEUE: if chat_id in QUEUE:
try: try:
if not await is_music_playing(chat_id): if await is_music_playing(chat_id):
await query.answer(" The stream userbot is already unmuted.") await query.answer(" The stream userbot is already unmuted.")
return return
await calls.unmute_stream(chat_id) await calls.unmute_stream(chat_id)