diff --git a/lib/dash/dash_parser.js b/lib/dash/dash_parser.js index 5f29fc29b7..073504c3cc 100644 --- a/lib/dash/dash_parser.js +++ b/lib/dash/dash_parser.js @@ -285,7 +285,8 @@ shaka.dash.DashParser = class { // For redirections add the response uri to the first entry in the // Manifest Uris array. - if (response.uri && !this.manifestUris_.includes(response.uri)) { + if (response.uri && response.uri != response.originalUri && + !this.manifestUris_.includes(response.uri)) { this.manifestUris_.unshift(response.uri); }