Closed
Description
- Gitea version (or commit ref): 1.11.0+dev-535-g60f279a86
- Git version: not needed
- Operating system: not needed
- Database (use
[x]
):- PostgreSQL
- MySQL
- MSSQL
- SQLite
- Can you reproduce the bug at https://try.gitea.io:
- Yes (provide example URL)
- No
- Not relevant
- Log gist:
Description
When assigning users to issues, email and web hook notifications are triggered twice:
This line:
https://github.com/go-gitea/gitea/blob/master/routers/repo/issue.go#L1180
Calls this notification:
https://github.com/go-gitea/gitea/blob/master/services/issue/assignee.go#L50
Then after it returns, it again calls this notification:
https://github.com/go-gitea/gitea/blob/master/routers/repo/issue.go#L1186
This requires a similar fix to #9375
...