From 0f247fd9f42602e9e146bcba01580e413e291b72 Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Tue, 5 Jan 2021 12:03:29 -0500 Subject: [PATCH] Merge pull request #2311 from jellyfin/nielsvanvelzen-disable-multi-download Disable multi download option (cherry picked from commit d08c4e42748bff3c40edfafec9880387774fc99c) Signed-off-by: Joshua M. Boniface --- src/components/multiSelect/multiSelect.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/multiSelect/multiSelect.js b/src/components/multiSelect/multiSelect.js index 8cfc838d09..b99ce8da7c 100644 --- a/src/components/multiSelect/multiSelect.js +++ b/src/components/multiSelect/multiSelect.js @@ -196,11 +196,14 @@ import confirm from '../confirm/confirm'; } if (user.Policy.EnableContentDownloading && appHost.supports('filedownload')) { + // Disabled because there is no callback for this item + /* menuItems.push({ name: globalize.translate('Download'), id: 'download', icon: 'file_download' }); + */ } if (user.Policy.IsAdministrator) {