Fix 500 on time tracking in timeline API (#21052)

Fix #21041
forgejo
qwerty287 2 years ago committed by GitHub
parent e6b3be4608
commit be14e79e98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -101,6 +101,12 @@ func ToTimelineComment(c *issues_model.Comment, doer *user_model.User) *api.Time
}
if c.Time != nil {
err = c.Time.LoadAttributes()
if err != nil {
log.Error("Time.LoadAttributes: %v", err)
return nil
}
comment.TrackedTime = ToTrackedTime(c.Time)
}

Loading…
Cancel
Save