Skip to content

Commit

Permalink
add https for video portal
Browse files Browse the repository at this point in the history
  • Loading branch information
dimaanj committed Jan 4, 2024
1 parent 791b126 commit 773ec73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uui-editor/src/plugins/videoPlugin/AddVideoModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function getVideoSrc(src: string) {

switch (service) {
case 'youtube': return `https://www.youtube.com/embed/${id}`;
case 'videoportal': return `//videoportal.epam.com/video/iframe.html?video=${id}`;
case 'videoportal': return `https://videoportal.epam.com/video/iframe.html?video=${id}`;
case 'vimeo': return `https://player.vimeo.com/video/${id}`;
default: return src;
}
Expand Down

0 comments on commit 773ec73

Please sign in to comment.