Skip to content

Commit

Permalink
Fix wrong attribute in L2A rule (#4252)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsilhavy committed Aug 7, 2023
1 parent e959ec4 commit dbfe4da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/streaming/rules/abr/L2ARule.js
Expand Up @@ -448,7 +448,7 @@ function L2ARule(config) {
if (bitrates[quality] >= lastthroughput) {
l2AParameter.Q = react * Math.max(vl, l2AParameter.Q);
}
l2AState.lastSegment.url = currentHttpRequest.url;
l2AState.lastSegmentUrl = currentHttpRequest.url;
}
switchRequest.quality = quality;
switchRequest.reason.throughput = throughput;
Expand Down

0 comments on commit dbfe4da

Please sign in to comment.