]> source.dussan.org Git - gitea.git/commitdiff
missing quotes in default value slice (#13550)
authorPatrick Aljord <patcito@gmail.com>
Sat, 14 Nov 2020 03:17:58 +0000 (04:17 +0100)
committerGitHub <noreply@github.com>
Sat, 14 Nov 2020 03:17:58 +0000 (22:17 -0500)
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
modules/setting/repository.go

index 0bb10199a8d1b1829577559619fccf4311b1dc5c..f5237ddf0d4f9550a468c9d9bbdf4bf111f3c193 100644 (file)
@@ -143,7 +143,7 @@ var (
                MaxCreationLimit:                        -1,
                MirrorQueueLength:                       1000,
                PullRequestQueueLength:                  1000,
-               PreferredLicenses:                       []string{"Apache License 2.0,MIT License"},
+               PreferredLicenses:                       []string{"Apache License 2.0", "MIT License"},
                DisableHTTPGit:                          false,
                AccessControlAllowOrigin:                "",
                UseCompatSSHURI:                         false,