diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2023-06-17 12:17:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-17 12:17:06 -0400 |
commit | 0ca017d0a82a8c5488cf9ec0139be476295c2b98 (patch) | |
tree | 968d1ddccbdd4c2f069f88779818964022544753 /internal/db | |
parent | 75767078aae1ca9b707f2d36aa571e40637461e1 (diff) |
mod: bump github.com/go-ldap/ldap/v3 from 3.4.4 to 3.4.5 (#7476)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Chen <jc@unknwon.io>
Diffstat (limited to 'internal/db')
-rw-r--r-- | internal/db/issue.go | 2 | ||||
-rw-r--r-- | internal/db/milestone.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/db/issue.go b/internal/db/issue.go index ef54e172..53c8132d 100644 --- a/internal/db/issue.go +++ b/internal/db/issue.go @@ -361,7 +361,7 @@ func (issue *Issue) ClearLabels(doer *User) (err error) { err = issue.PullRequest.LoadIssue() if err != nil { log.Error("LoadIssue: %v", err) - return + return err } err = PrepareWebhooks(issue.Repo, HOOK_EVENT_PULL_REQUEST, &api.PullRequestPayload{ Action: api.HOOK_ISSUE_LABEL_CLEARED, diff --git a/internal/db/milestone.go b/internal/db/milestone.go index 0166a2da..a6e74f51 100644 --- a/internal/db/milestone.go +++ b/internal/db/milestone.go @@ -357,7 +357,7 @@ func ChangeMilestoneAssign(doer *User, issue *Issue, oldMilestoneID int64) (err err = issue.PullRequest.LoadIssue() if err != nil { log.Error("LoadIssue: %v", err) - return + return err } err = PrepareWebhooks(issue.Repo, HOOK_EVENT_PULL_REQUEST, &api.PullRequestPayload{ Action: hookAction, |