diff options
author | Unknwon <u@gogs.io> | 2017-03-02 22:08:39 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-03-02 22:08:39 -0500 |
commit | f7b7d008b684a3475a1834b8b574e5ce082a723c (patch) | |
tree | 897cc1d9c54618eb6d11b188d8b6dd9866752339 | |
parent | b39454ca16246643530135c519d0437da6090bfc (diff) |
setting: fix Webhook.SkipTLSVerify didn't load (#4228)
-rw-r--r-- | gogs.go | 2 | ||||
-rw-r--r-- | modules/setting/setting.go | 2 | ||||
-rw-r--r-- | templates/.VERSION | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -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 diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 0f750554..ed04665e 100644 --- a/modules/setting/setting.go +++ b/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 } diff --git a/templates/.VERSION b/templates/.VERSION index 5c5e94d5..132f1d90 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.10.3.0301
\ No newline at end of file +0.10.4.0302
\ No newline at end of file |