Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

K.canPlayType can be undefined fixed issue #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

TessavWalstijn
Copy link

K.canPlayType can be undefined witch can lead to an crash on old browsers.
While it was: b=K.canPlayType(a)||!1 so when K.canPlayType(a) does not return a value !1 would be used.
I updated it to b=K.canPlayType===t?!1:K.canPlayType(a)||!1 so when K.canPlayType is undefined (known as t) the value !1 would be used.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant