From 6c03684db5bbf658887dc34c835e6552a1f43c13 Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Sun, 28 Sep 2025 01:35:18 -0400 Subject: [PATCH] Add support for download all for collections --- src/components/itemContextMenu.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/itemContextMenu.js b/src/components/itemContextMenu.js index b05622021..15f414ebd 100644 --- a/src/components/itemContextMenu.js +++ b/src/components/itemContextMenu.js @@ -16,6 +16,7 @@ import { AppFeature } from 'constants/appFeature'; /** Item types that support downloading all children. */ const DOWNLOAD_ALL_TYPES = [ + BaseItemKind.BoxSet, BaseItemKind.MusicAlbum, BaseItemKind.Season, BaseItemKind.Series @@ -454,6 +455,7 @@ function executeCommand(item, id, options) { }; switch (item.Type) { + case BaseItemKind.BoxSet: case BaseItemKind.MusicAlbum: apiClient.getItems(options.user.Id, { ParentId: item.Id,