Skip to content

Commit

Permalink
contentIds
Browse files Browse the repository at this point in the history
  • Loading branch information
tischsoic committed Dec 19, 2024
1 parent 6067cca commit 4779908
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -262,15 +262,15 @@ 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(
{
...restInfo,
noLanguageCode: true,
useAlwaysAvailable: true,
contentId,
contentId: contentIds,
signal,
},
(response) => resolve(response),
Expand Down

0 comments on commit 4779908

Please sign in to comment.