Browse Source

missing quotes in default value slice (#13550)

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
tags/v1.15.0-dev
Patrick Aljord 3 years ago
parent
commit
a2efcb6acc
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      modules/setting/repository.go

+ 1
- 1
modules/setting/repository.go View 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,

Loading…
Cancel
Save