Skip to content

Commit

Permalink
Merge pull request #637 from jduehring/fix-633
Browse files Browse the repository at this point in the history
Fix wrong dcTitle key
  • Loading branch information
JulianKniephoff authored Dec 11, 2024
2 parents 563770b + 3e3ba7c commit 4e58c2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/js/integrations/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,11 @@ define([
* @return {Promise.<object>} Metadata about the video
*/
getVideoParameters: function () {
return $.when(mediaPackageId, searchResult, mediaPackage).then(function (id, result, mediaPackage) {
return mediaPackage.then(function (mediaPackage) {
return {
video_extid: id,
video_extid: mediaPackage.id,
series_extid: mediaPackage.series,
title: result.dcTitle
title: mediaPackage.title,
};
});
},
Expand Down

0 comments on commit 4e58c2b

Please sign in to comment.