Skip to content

Commit 41c5f3f

Browse files
authored
Fix addition of custom abandonFragmentRules (Dash-Industry-Forum#4757)
1 parent ee5bf99 commit 41c5f3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/streaming/rules/abr/ABRRulesCollection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ function ABRRulesCollection(config) {
9191
}
9292

9393
if (rule.type === Constants.RULES_TYPES.ABANDON_FRAGMENT_RULES) {
94-
abandonFragmentRulesList.push(rule.rule(context).create());
94+
abandonFragmentRules.push(rule.rule(context).create());
9595
}
9696
});
9797

0 commit comments

Comments
 (0)