Browse Source

Fix double PR notification from API (#10482)

Signed-off-by: jolheiser <john.olheiser@gmail.com>
tags/v1.10.5
John Olheiser 4 years ago
parent
commit
78585b1cd7
No account linked to committer's email address
1 changed files with 0 additions and 3 deletions
  1. 0
    3
      routers/api/v1/repo/pull.go

+ 0
- 3
routers/api/v1/repo/pull.go View File

@@ -16,7 +16,6 @@ import (
"code.gitea.io/gitea/modules/convert"
"code.gitea.io/gitea/modules/git"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/notification"
api "code.gitea.io/gitea/modules/structs"
"code.gitea.io/gitea/modules/timeutil"
"code.gitea.io/gitea/routers/api/v1/utils"
@@ -326,8 +325,6 @@ func CreatePullRequest(ctx *context.APIContext, form api.CreatePullRequestOption
return
}

notification.NotifyNewPullRequest(pr)

log.Trace("Pull request created: %d/%d", repo.ID, prIssue.ID)
ctx.JSON(http.StatusCreated, convert.ToAPIPullRequest(pr))
}

Loading…
Cancel
Save