mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 07:32:02 +00:00
fix api usage in selectVideoImplementation
This commit is contained in:
parent
6332a9a24c
commit
a660c1343b
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ class Video extends React.Component {
|
||||||
selectVideoImplementation = (args) => {
|
selectVideoImplementation = (args) => {
|
||||||
if (args.ipc) {
|
if (args.ipc) {
|
||||||
return MPVVideo;
|
return MPVVideo;
|
||||||
} else if (args.ytId) {
|
} else if (args.stream.ytId) {
|
||||||
return YouTubeVideo;
|
return YouTubeVideo;
|
||||||
} else {
|
} else {
|
||||||
return HTMLVideo;
|
return HTMLVideo;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue