-
Notifications
You must be signed in to change notification settings - Fork 428
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
feat: remove handleManifestRedirects and always use XHR.responseURL if available #1226
Conversation
Codecov Report
@@ Coverage Diff @@
## next #1226 +/- ##
==========================================
- Coverage 86.31% 86.30% -0.01%
==========================================
Files 39 39
Lines 9796 9792 -4
Branches 2278 2276 -2
==========================================
- Hits 8455 8451 -4
Misses 1341 1341
Continue to review full report at Codecov.
|
@@ -2497,7 +2484,7 @@ QUnit.test('refreshes the xml if there is a minimumUpdatePeriod', function(asser | |||
this.clock.tick(4 * 1000); | |||
|
|||
assert.equal(this.requests.length, 1, 'refreshed manifest'); | |||
assert.equal(this.requests[0].uri, 'dash-live.mpd', 'refreshed manifest'); | |||
assert.equal(this.requests[0].uri, window.location.href.split('/').slice(0, -1).join('/') + '/dash-live.mpd', 'refreshed manifest'); |
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.
Should we move this into a function for readability?
…f available (#1226) BREAKING CHANGE: remove handleManifestRedirects option. Now XHR.responseURL will always be used when available.
…f available (#1226) BREAKING CHANGE: remove handleManifestRedirects option. Now XHR.responseURL will always be used when available.
No description provided.