From eba46a9576a737900954de04b707604339e1029c Mon Sep 17 00:00:00 2001 From: ferferga Date: Fri, 3 Apr 2020 00:10:18 +0200 Subject: [PATCH] Fix wrongly removed replace --- src/controllers/dashboard/plugins/available.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/dashboard/plugins/available.js b/src/controllers/dashboard/plugins/available.js index 166505856e..adccfa3935 100644 --- a/src/controllers/dashboard/plugins/available.js +++ b/src/controllers/dashboard/plugins/available.js @@ -16,7 +16,7 @@ define(["loading", "libraryMenu", "globalize", "cardStyle", "emby-button", "emby } function getHeaderText(category) { - category = category(" ", ""); + category = category.replace(" ", ""); if ("Channel" === category) { category = "Channels"; } else if ("Theme" === category) {