From 3ac694e21cfc56900dc5d019ed5f67dae428aa21 Mon Sep 17 00:00:00 2001 From: Matthew Stratford Date: Thu, 2 Sep 2021 21:28:50 +0100 Subject: [PATCH] Make uninitialised sound-card output obvious --- ui-templates/config_player.html | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ui-templates/config_player.html b/ui-templates/config_player.html index 2b329e4..1c09a90 100644 --- a/ui-templates/config_player.html +++ b/ui-templates/config_player.html @@ -9,7 +9,16 @@

Currently Selected

{% for channel in data.channels %} - Player {{channel.channel}}: {% if channel.output %}{{channel.output}}{% else %}Default Audio Device{% endif %}
+ Player {{channel.channel}}: + {% if channel.output %} + {{channel.output}} + {% else %} + Default Audio Device + {% endif %} + {% if not channel.initialised %} + - ERROR: Player did not start, potentially missing sound output? + {% endif %} +
{% endfor %}