Skip to content

Commit

Permalink
feat(ssrc-rewriting): Enable it by default.
Browse files Browse the repository at this point in the history
Enable ssrc-rewriting by default, it can still be overwritten via config.js
  • Loading branch information
jallamsetty1 committed Feb 15, 2024
1 parent 56952c2 commit ea72a60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/flags/FeatureFlags.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class FeatureFlags {
*/
init(flags) {
this._runInLiteMode = Boolean(flags.runInLiteMode);
this._ssrcRewriting = Boolean(flags.ssrcRewritingEnabled);
this._ssrcRewriting = flags.ssrcRewritingEnabled ?? true;
this._joinAsVisitor = Boolean(flags.enableJoinAsVisitor ?? true);
}

Expand Down

0 comments on commit ea72a60

Please sign in to comment.