diff options
Diffstat (limited to 'internal/config/defaults.go')
-rw-r--r-- | internal/config/defaults.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/config/defaults.go b/internal/config/defaults.go index 2a7c6f9db..3da489501 100644 --- a/internal/config/defaults.go +++ b/internal/config/defaults.go @@ -22,6 +22,7 @@ import ( "codeberg.org/gruf/go-bytesize" "github.com/coreos/go-oidc/v3/oidc" + "github.com/superseriousbusiness/gotosocial/internal/language" ) // Defaults contains a populated Configuration with reasonable defaults. Note that @@ -62,6 +63,7 @@ var Defaults = Configuration{ InstanceExposeSuspended: false, InstanceExposeSuspendedWeb: false, InstanceDeliverToSharedInboxes: true, + InstanceLanguages: make(language.Languages, 0), AccountsRegistrationOpen: true, AccountsApprovalRequired: true, |