Skip to content

Commit

Permalink
fix(DASH): Fix unescape UTCTiming uris (#6501)
Browse files Browse the repository at this point in the history
  • Loading branch information
avelad committed Apr 29, 2024
1 parent 0e00d65 commit 27109fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/dash/dash_parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -2079,8 +2079,9 @@ shaka.dash.DashParser = class {
* @private
*/
async requestForTiming_(getBaseUris, uri, method) {
const uris = [shaka.util.StringUtils.htmlUnescape(uri)];
const requestUris =
shaka.util.ManifestParserUtils.resolveUris(getBaseUris(), [uri]);
shaka.util.ManifestParserUtils.resolveUris(getBaseUris(), uris);
const request = shaka.net.NetworkingEngine.makeRequest(
requestUris, this.config_.retryParameters);
request.method = method;
Expand Down

0 comments on commit 27109fe

Please sign in to comment.