From b41753220f0fca77d921d61eb4cd9b567fa3f2af Mon Sep 17 00:00:00 2001 From: SuperBFG7 Date: Wed, 10 Aug 2022 17:30:24 +0200 Subject: [PATCH] don't show queue length when browsing --- htdocs/js/mpd.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/htdocs/js/mpd.js b/htdocs/js/mpd.js index 5e02bc1..708aaa9 100644 --- a/htdocs/js/mpd.js +++ b/htdocs/js/mpd.js @@ -92,7 +92,8 @@ var app = $.sammy(function () { }); } - $('#panel-heading').text('Browse database: ' + browsepath); + $('#panel-heading').text('Browse database'); + $('#panel-heading-info').empty(); var path_array = browsepath.split('/'); var full_path = ''; $.each(path_array, function (index, chunk) {