From 09f6e775defef619e111db163bfbafc2864b8c58 Mon Sep 17 00:00:00 2001 From: cvium Date: Mon, 2 Nov 2020 09:29:57 +0100 Subject: [PATCH] Fix collectionEditor creation in movies --- src/controllers/movies/moviecollections.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/movies/moviecollections.js b/src/controllers/movies/moviecollections.js index 573e5122c..6aed25f9a 100644 --- a/src/controllers/movies/moviecollections.js +++ b/src/controllers/movies/moviecollections.js @@ -248,7 +248,7 @@ import 'emby-itemscontainer'; tabContent.querySelector('.btnNewCollection').addEventListener('click', () => { import('collectionEditor').then(({default: collectionEditor}) => { const serverId = ApiClient.serverInfo().Id; - new collectionEditor.showEditor({ + new collectionEditor({ items: [], serverId: serverId });