diff options
author | techknowlogick <techknowlogick@gitea.io> | 2020-11-14 07:12:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-14 14:12:01 +0200 |
commit | 9a8e02ce30a94336c58940ccc23a41dd688b8248 (patch) | |
tree | 732dd6ebe4cdbfcfe228f662e076d024959983fa | |
parent | 159a4db30a56fd58a17ae9c9f6879303ee63f1a5 (diff) | |
download | gitea-9a8e02ce30a94336c58940ccc23a41dd688b8248.tar.gz gitea-9a8e02ce30a94336c58940ccc23a41dd688b8248.zip |
missing quotes in default value slice (#13550) (#13557)
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Co-authored-by: Patrick Aljord <patcito@gmail.com>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
-rw-r--r-- | modules/setting/repository.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/setting/repository.go b/modules/setting/repository.go index 0bb10199a8..f5237ddf0d 100644 --- a/modules/setting/repository.go +++ b/modules/setting/repository.go @@ -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, |