diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2021-01-15 04:27:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-14 21:27:22 +0100 |
commit | 60a3297a33b2209ae7acf6fd84afd62e095e01aa (patch) | |
tree | 641587633e7443f02ff666c02f2b2a640634ba46 /routers/repo/issue.go | |
parent | f76c30094f086162d09926a95e9a75c91177a674 (diff) | |
download | gitea-60a3297a33b2209ae7acf6fd84afd62e095e01aa.tar.gz gitea-60a3297a33b2209ae7acf6fd84afd62e095e01aa.zip |
Use ServerError provided by Context (#14333)
... instead of InternalServerError by macaron
Diffstat (limited to 'routers/repo/issue.go')
-rw-r--r-- | routers/repo/issue.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 1d8d9c0366..478baf8d86 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -1117,7 +1117,7 @@ func ViewIssue(ctx *context.Context) { iw.IssueID = issue.ID iw.IsWatching, err = models.CheckIssueWatch(ctx.User, issue) if err != nil { - ctx.InternalServerError(err) + ctx.ServerError("CheckIssueWatch", err) return } } |