Browse Source

Fixed Webhook URL-length Issue #2465

Kim "BKC" Carlbäcker 9 years ago
parent
commit
edc414c584
1 changed files with 1 additions and 1 deletions
  1. 1 1
      models/webhook.go

+ 1 - 1
models/webhook.go

@@ -285,7 +285,7 @@ type HookTask struct {
 	HookID          int64
 	UUID            string
 	Type            HookTaskType
-	URL             string
+	URL             string `xorm:"TEXT"`
 	api.Payloader   `xorm:"-"`
 	PayloadContent  string `xorm:"TEXT"`
 	ContentType     HookContentType