diff options
author | ᴜɴᴋɴᴡᴏɴ <u@gogs.io> | 2020-03-01 14:55:03 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-01 14:55:03 +0800 |
commit | f04b2d43509816ecfda93aa5d0d1fd685d9b860f (patch) | |
tree | 548c7b0b4ff2f187569e74cf99c19742a44f18aa /internal/db/webhook.go | |
parent | 9c65798902386341a205d52b6b3842e1dc2c751a (diff) |
lint: fix some Golang CI lint issues (#5955)
Diffstat (limited to 'internal/db/webhook.go')
-rw-r--r-- | internal/db/webhook.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/db/webhook.go b/internal/db/webhook.go index c056f413..96a01971 100644 --- a/internal/db/webhook.go +++ b/internal/db/webhook.go @@ -242,7 +242,7 @@ func getWebhook(bean *Webhook) (*Webhook, error) { if err != nil { return nil, err } else if !has { - return nil, errors.WebhookNotExist{bean.ID} + return nil, errors.WebhookNotExist{ID: bean.ID} } return bean, nil } @@ -509,7 +509,7 @@ func GetHookTaskOfWebhookByUUID(webhookID int64, uuid string) (*HookTask, error) if err != nil { return nil, err } else if !has { - return nil, errors.HookTaskNotExist{webhookID, uuid} + return nil, errors.HookTaskNotExist{HookID: webhookID, UUID: uuid} } return hookTask, nil } |