From 6b36db48aa4edcb3b3cd23eba085bc4da97d8610 Mon Sep 17 00:00:00 2001 From: deflax Date: Wed, 17 Jan 2024 18:20:17 +0200 Subject: [PATCH] redesign query_playhead return string --- src/discordbot/discordbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/discordbot/discordbot.py b/src/discordbot/discordbot.py index 49a4197..133f7cd 100644 --- a/src/discordbot/discordbot.py +++ b/src/discordbot/discordbot.py @@ -86,7 +86,7 @@ async def query_playhead(): logger_discord.error('Cannot connect to the playhead!') head_name = playhead['name'] head_prio = playhead['prio'] - return f'Now playing {head_name} with prio {head_prio}' + return f'```Now playing {head_name}. Priority={head_prio}```' async def query_database(): global database