Turn message formatting experiment on by default

This commit is contained in:
Sarah Jamie Lewis 2022-06-22 12:51:24 -07:00
parent 7069fab0b1
commit a558ce67d6
2 changed files with 5 additions and 1 deletions

View File

@ -30,3 +30,6 @@ const StateSelectedProfileTime = "state-selected-profile-time"
const BlockUnknownPeersSetting = "blockunknownpeers"
const LocaleSetting = "locale"
const ZoomSetting = "zoom"
// App Experiments
const MessageFormattingExperiment = "message-formatting"

View File

@ -1,6 +1,7 @@
package utils
import (
"git.openprivacy.ca/cwtch.im/libcwtch-go/constants"
path "path/filepath"
"sync"
@ -65,7 +66,7 @@ var DefaultGlobalSettings = GlobalSettings{
Theme: "dark",
PreviousPid: -1,
ExperimentsEnabled: false,
Experiments: make(map[string]bool),
Experiments: map[string]bool{constants.MessageFormattingExperiment: true},
StateRootPane: 0,
FirstTime: true,
BlockUnknownConnections: false,