add recommendations assignment in video details class

Changelog: added
This commit is contained in:
Kai 2025-02-20 14:43:13 -06:00
parent 3361b77aec
commit 78f5169880
No known key found for this signature in database

View file

@ -263,6 +263,10 @@ class PlatformVideoDetails extends PlatformVideo {
this.rating = obj.rating ?? null; //IRating
this.subtitles = obj.subtitles ?? [];
this.isShort = !!obj.isShort ?? false;
if (obj.getContentRecommendations) {
this.getContentRecommendations = obj.getContentRecommendations
}
}
}