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

Fix #21041
This commit is contained in:
qwerty287
2022-09-04 16:01:23 +02:00
committed by GitHub
parent e6b3be4608
commit be14e79e98

View File

@ -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)
}