Turn on Message Formatting by Default
continuous-integration/drone/pr Build is pending Details

This commit is contained in:
Sarah Jamie Lewis 2022-06-22 12:56:15 -07:00
parent 405160947b
commit 1483ddcc94
1 changed files with 7 additions and 0 deletions

View File

@ -85,6 +85,13 @@ class Settings extends ChangeNotifier {
return this.experiments[experiment]! == true;
}
}
// If message formatting has not explicitly been turned off, then
// turn it on by default.
if (experiment == FormattingExperiment) {
return true;
}
return false;
}