Fix track time issue id (#36664)

This commit is contained in:
Lunny Xiao
2026-02-20 13:48:54 -08:00
committed by GitHub
parent aedc564308
commit 5ad87616c9
6 changed files with 44 additions and 6 deletions
+1 -1
View File
@@ -699,7 +699,7 @@ func (c *Comment) LoadTime(ctx context.Context) error {
return nil
}
var err error
c.Time, err = GetTrackedTimeByID(ctx, c.TimeID)
c.Time, err = GetTrackedTimeByID(ctx, c.IssueID, c.TimeID)
return err
}