Skip to content

Commit

Permalink
Dont trigger notification twice on issue assignee change (#9582)
Browse files Browse the repository at this point in the history
  • Loading branch information
6543 authored and lafriks committed Jan 2, 2020
1 parent c620eb5 commit 9cf7048
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions routers/repo/issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import (
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/markup"
"code.gitea.io/gitea/modules/markup/markdown"
"code.gitea.io/gitea/modules/notification"
"code.gitea.io/gitea/modules/setting"
api "code.gitea.io/gitea/modules/structs"
"code.gitea.io/gitea/modules/util"
Expand Down Expand Up @@ -1177,13 +1176,11 @@ func UpdateIssueAssignee(ctx *context.Context) {
return
}

removed, comment, err := issue_service.ToggleAssignee(issue, ctx.User, assigneeID)
_, _, err = issue_service.ToggleAssignee(issue, ctx.User, assigneeID)
if err != nil {
ctx.ServerError("ToggleAssignee", err)
return
}

notification.NotifyIssueChangeAssignee(ctx.User, issue, assignee, removed, comment)
}
}
ctx.JSON(200, map[string]interface{}{
Expand Down

0 comments on commit 9cf7048

Please sign in to comment.