@@ -146,10 +146,13 @@ func (s service) ListComments(ctx context.Context, _ string, id uint64, opt *cha if err != nil { return nil, err } var comments []issues.Comment for idx, message := range change.Messages { if strings.HasPrefix(message.Tag, "autogenerated:") { continue } comments = append(comments, issues.Comment{ ID: uint64(idx), // TODO: message.ID is not uint64; e.g., "bfba753d015916303152305cee7152ea7a112fe0". User: s.gerritUser(message.Author), CreatedAt: time.Time(message.Date), Body: message.Message,