Turn on Message Formatting by Default #488

Merged
dan merged 2 commits from default_message_formatting into trunk 2022-06-22 21:34:22 +00:00
1 changed files with 7 additions and 0 deletions
Showing only changes of commit 1483ddcc94 - Show all commits

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;
}