From 491eded014c52ff40ac22271e703a0a62891dc43 Mon Sep 17 00:00:00 2001 From: jcorporation Date: Tue, 31 Jan 2023 22:01:00 +0100 Subject: [PATCH] Fix: add missing semicolon --- htdocs/js/state.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/js/state.js b/htdocs/js/state.js index f31eab874..3629255c2 100644 --- a/htdocs/js/state.js +++ b/htdocs/js/state.js @@ -30,7 +30,7 @@ function parseStats(obj) { document.getElementById('mpdstatsMympd_uptime').textContent = fmtDuration(obj.result.myMPDuptime); document.getElementById('mpdstatsDbUpdated').textContent = fmtDate(obj.result.dbUpdated); document.getElementById('mympdVersion').textContent = obj.result.mympdVersion; - document.getElementById('myMPDuri').textContent = obj.result.myMPDuri + document.getElementById('myMPDuri').textContent = obj.result.myMPDuri; const mpdInfoVersionEl = document.getElementById('mpdInfoVersion'); elClear(mpdInfoVersionEl);