From df66554616777239cec283019d104517dd434527 Mon Sep 17 00:00:00 2001 From: none Date: Mon, 27 Apr 2020 21:35:13 +0200 Subject: [PATCH] show idle tuner as "IDLE" instead of nothing --- octoserve/var/www/tunerstatus.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octoserve/var/www/tunerstatus.html b/octoserve/var/www/tunerstatus.html index 1bae315..edc1695 100644 --- a/octoserve/var/www/tunerstatus.html +++ b/octoserve/var/www/tunerstatus.html @@ -52,7 +52,7 @@ function Show(TunerList) if( TunerList[i].Status == "Active" ) document.getElementById("tdStatus"+i).firstChild.nodeValue = "No Signal"; else - document.getElementById("tdStatus"+i).firstChild.nodeValue = ""; + document.getElementById("tdStatus"+i).firstChild.nodeValue = "IDLE"; document.getElementById("tdStrength"+i).firstChild.nodeValue = ""; document.getElementById("tdSNR"+i).firstChild.nodeValue = ""; document.getElementById("tdQuality"+i).firstChild.nodeValue = "";