-
Notifications
You must be signed in to change notification settings - Fork 7.5k
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
fix(text-tracks): set withCredentials on XHR if crossOrigin='use-credentials' #6588
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code looks good what do you think of writing a test for this case specifically?
Yeah, I guess I should look into adding a test. |
@gkatsev do you know about when we can expect to see this go out in a release? |
Pre-release will probably be either today or next week with a full release happening about a week or more after. |
As part of #6588, we started using the crossOrigin method. However, it's possible that a tech doesn't support this. Notably, the Flash tech. We should instead have an abstract method on Tech that returns nothing so we don't fail on those browsers.
As part of #6588, we started using the crossOrigin method. However, it's possible that a tech doesn't support this. Notably, the Flash tech. We should instead have an abstract method on Tech that returns nothing so we don't fail on those browsers.
As part of videojs#6588, we started using the crossOrigin method. However, it's possible that a tech doesn't support this. Notably, the Flash tech. We should instead have an abstract method on Tech that returns nothing so we don't fail on those browsers.
Fixes #6587