mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 11:42:05 +00:00
Fix Checking if profile.playerType is 'internal'
This commit is contained in:
parent
7ff04d7803
commit
281d64adfa
1 changed files with 1 additions and 1 deletions
|
|
@ -55,7 +55,7 @@ const Stream = ({ className, videoId, addonName, name, description, thumbnail, p
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else if (profile.settings.playerType !== 'internal') {
|
} else if (profile.settings.playerType && profile.settings.playerType !== 'internal') {
|
||||||
markVideoAsWatched();
|
markVideoAsWatched();
|
||||||
toast.show({
|
toast.show({
|
||||||
type: 'success',
|
type: 'success',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue