summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--model/config.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/model/config.go b/model/config.go
index 71b76096f..a8e0b0b07 100644
--- a/model/config.go
+++ b/model/config.go
@@ -1021,6 +1021,10 @@ func (s *TeamSettings) SetDefaults() {
if s.ExperimentalTownSquareIsReadOnly == nil {
s.ExperimentalTownSquareIsReadOnly = NewBool(false)
}
+
+ if s.DefaultTeamName == nil {
+ s.DefaultTeamName = NewString("")
+ }
}
type ClientRequirements struct {