From d3c699aefa7f68c989b4b0f225e753bcabc8d25d Mon Sep 17 00:00:00 2001 From: Fabian Schlenz Date: Fri, 29 Nov 2019 21:23:38 +0100 Subject: [PATCH] Webinterface: Typo fix. --- src/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.html b/src/index.html index b4decb4..5240c4c 100644 --- a/src/index.html +++ b/src/index.html @@ -188,7 +188,7 @@ update_playlist = function(data) { tr = $('').data('track', i); tr.append($('').html(i + 1)); tr.append($('').html(data.current_track==i ? '' : '')); - tr.append($('').html(data.files[i].substr(data.files[i].title))); + tr.append($('').html(data.files[i].title)); $('#track_list').append(tr); }