Skip to content

Commit

Permalink
Merge pull request #443 from Stremio/ensure-playerType-is-set
Browse files Browse the repository at this point in the history
Fix Checking if profile.playerType is 'internal'
  • Loading branch information
jaruba authored Aug 15, 2023
2 parents 7ff04d7 + 281d64a commit 15e31c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/MetaDetails/StreamsList/Stream/Stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 15e31c1

Please sign in to comment.