From 4779908e3482186c0407ce6eac331609473a3ae1 Mon Sep 17 00:00:00 2001 From: tischsoic Date: Thu, 19 Dec 2024 12:02:41 +0100 Subject: [PATCH] contentIds --- .../modules/universal-discovery/universal.discovery.module.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bundle/ui-dev/src/modules/universal-discovery/universal.discovery.module.js b/src/bundle/ui-dev/src/modules/universal-discovery/universal.discovery.module.js index 9601a27c8c..6f8a3fcbab 100644 --- a/src/bundle/ui-dev/src/modules/universal-discovery/universal.discovery.module.js +++ b/src/bundle/ui-dev/src/modules/universal-discovery/universal.discovery.module.js @@ -262,7 +262,7 @@ const UniversalDiscoveryModule = (props) => { return Promise.resolve([]); } - const contentId = locationsWithoutVersion.map((item) => item.location.ContentInfo.Content._id).join(','); + const contentIds = locationsWithoutVersion.map((item) => item.location.ContentInfo.Content._id).join(','); return new Promise((resolve) => { loadContentInfo( @@ -270,7 +270,7 @@ const UniversalDiscoveryModule = (props) => { ...restInfo, noLanguageCode: true, useAlwaysAvailable: true, - contentId, + contentId: contentIds, signal, }, (response) => resolve(response),