Browse Source

Merge pull request #2483 from bkcsoft/fix/mysql-webhook-url-length

Fixed Webhook URL-length Issue #2465
tags/v1.2.0-rc1
Unknwon 9 years ago
parent
commit
31a11f3b29
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      models/webhook.go

+ 1
- 1
models/webhook.go View File

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


Loading…
Cancel
Save