aboutsummaryrefslogtreecommitdiff
path: root/routers/web/repo/issue_stopwatch.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/web/repo/issue_stopwatch.go')
-rw-r--r--routers/web/repo/issue_stopwatch.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/routers/web/repo/issue_stopwatch.go b/routers/web/repo/issue_stopwatch.go
index 68f89b258..97d4441a2 100644
--- a/routers/web/repo/issue_stopwatch.go
+++ b/routers/web/repo/issue_stopwatch.go
@@ -99,7 +99,9 @@ func GetActiveStopwatch(ctx *context.Context) {
issue, err := issues_model.GetIssueByID(ctx, sw.IssueID)
if err != nil || issue == nil {
- ctx.ServerError("GetIssueByID", err)
+ if !issues_model.IsErrIssueNotExist(err) {
+ ctx.ServerError("GetIssueByID", err)
+ }
return
}
if err = issue.LoadRepo(ctx); err != nil {