Explorar o código

webhook: fix push panic to organizational repository (#4206)

Unknwon %!s(int64=8) %!d(string=hai) anos
pai
achega
d43f5f17fd
Modificáronse 3 ficheiros con 3 adicións e 3 borrados
  1. 1 1
      gogs.go
  2. 1 1
      models/webhook.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.1.0228"
+const APP_VER = "0.10.2.0228"
 
 func init() {
 	setting.AppVer = APP_VER

+ 1 - 1
models/webhook.go

@@ -305,7 +305,7 @@ func GetWebhooksByOrgID(orgID int64) (ws []*Webhook, err error) {
 
 // getActiveWebhooksByOrgID returns all active webhooks for an organization.
 func getActiveWebhooksByOrgID(e Engine, orgID int64) ([]*Webhook, error) {
-	ws := make([]*Webhook, 3)
+	ws := make([]*Webhook, 0, 3)
 	return ws, e.Where("org_id=?", orgID).And("is_active=?", true).Find(&ws)
 }
 

+ 1 - 1
templates/.VERSION

@@ -1 +1 @@
-0.10.1.0228
+0.10.2.0228