diff --git a/driver/utils.py b/driver/utils.py index 1cc7e39..a97d3b1 100644 --- a/driver/utils.py +++ b/driver/utils.py @@ -65,17 +65,7 @@ async def skip_item(chat_id, h): @call_py.on_stream_end() async def on_end_handler(_, u: Update): - if isinstance(u, StreamAudioEnded) or isinstance(u, StreamVideoEnded): - chat_id = u.chat_id - print(chat_id) - op = await skip_current_song(chat_id) - if op==1: - await _.send_message(chat_id, "āŒ __Queues__ **is empty.**\n\n**ā€¢ userbot leaving voice chat**") - else: - await _.send_photo( - chat_id, - photo=f"{IMG_4}", - caption=f"šŸ’” **Streaming next track**\n\nšŸ· **Name:** [{op[0]}]({op[1]})\nšŸ’­ **Chat:** `{chat_id}`\nšŸ’” **Status:** `Playing`", - ) - else: - pass + if isinstance(u, StreamAudioEnded) or isinstance(u, StreamVideoEnded): + chat_id = u.chat_id + print(chat_id) + await skip_current_song(chat_id)