Hotfix for "Add time manually" (https://github.com/go-gitea/gitea/pull/2211#issuecomment-328780125) (#2499)
Signed-off-by: Jonas Franz <info@jonasfranz.software>
This commit is contained in:
parent
35b473d8d3
commit
633de01cf7
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ func AddTimeManually(c *context.Context, form auth.AddTimeManuallyForm) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, err := models.AddTime(c.User, issue, int64(total)); err != nil {
|
if _, err := models.AddTime(c.User, issue, int64(total.Seconds())); err != nil {
|
||||||
c.Handle(http.StatusInternalServerError, "AddTime", err)
|
c.Handle(http.StatusInternalServerError, "AddTime", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue