mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27: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();
|
||||
toast.show({
|
||||
type: 'success',
|
||||
|
|
|
|||
Loading…
Reference in a new issue