mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
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
|
||||
}
|
||||
|
||||
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)
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue