Browse Source

setting: fix Webhook.SkipTLSVerify didn't load (#4228)

Unknwon 7 years ago
parent
commit
f7b7d008b6
3 changed files with 3 additions and 3 deletions
  1. 1 1
      gogs.go
  2. 1 1
      modules/setting/setting.go
  3. 1 1
      templates/.VERSION

+ 1 - 1
gogs.go

@@ -16,7 +16,7 @@ import (
 	"github.com/gogits/gogs/modules/setting"
 )
 
-const APP_VER = "0.10.3.0301"
+const APP_VER = "0.10.4.0302"
 
 func init() {
 	setting.AppVer = APP_VER

+ 1 - 1
modules/setting/setting.go

@@ -142,7 +142,7 @@ var (
 		Types          []string
 		QueueLength    int
 		DeliverTimeout int
-		SkipTLSVerify  bool
+		SkipTLSVerify  bool `ini:"SKIP_TLS_VERIFY"`
 		PagingNum      int
 	}
 

+ 1 - 1
templates/.VERSION

@@ -1 +1 @@
-0.10.3.0301
+0.10.4.0302