diff --git a/src/components/itemHelper.js b/src/components/itemHelper.js index 50c9975f2b..b051fc74c4 100644 --- a/src/components/itemHelper.js +++ b/src/components/itemHelper.js @@ -284,8 +284,9 @@ export function supportsMediaSourceSelection (item) { if (!item.MediaSources || (item.MediaSources.length === 1 && item.MediaSources[0].Type === 'Placeholder')) { return false; } - if (!item.EnableMediaSourceDisplay) { - return false; + + if (item.EnableMediaSourceDisplay != null) { + return !!item.EnableMediaSourceDisplay; } return !item.SourceType || item.SourceType === 'Library';