Skip to content

Commit

Permalink
feat(cxl-ui): [cxl-jw-player] fix loading a playlist from the source …
Browse files Browse the repository at this point in the history
…attribute
  • Loading branch information
anoblet committed Mar 3, 2023
1 parent a33acf6 commit 865b87c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export function BaseMixin(BaseClass) {
if (this.playlistId) {
response = await fetch(await this._signedJWTURL(`/v2/playlists/${this.playlistId}`));
} else if (this.playlistSource) {
response = await fetch(`https://cdn.jwplayer.com/v2/playlists/${this.playlistId}`);
response = await fetch(this.playlistSource);
} else {
return false;
}
Expand Down

0 comments on commit 865b87c

Please sign in to comment.