We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67ced7f commit 6df8b68Copy full SHA for 6df8b68
cmd/cl/cl.go
@@ -290,6 +290,9 @@ func parseCL(ci *gerrit.ChangeInfo) *CL {
290
explicitReviewer = ""
291
)
292
for _, msg := range ci.Messages {
293
+ if msg.Author == nil { // happens for Gerrit-generated messages
294
+ continue
295
+ }
296
if strings.HasPrefix(msg.Message, "Uploaded patch set ") {
297
if explicitReviewer == "close" {
298
@@ -386,6 +389,9 @@ func parseCL(ci *gerrit.ChangeInfo) *CL {
386
389
// figure out whether the CL is in need of review
387
390
// (or else is waiting for the author to do more work).
388
391
392
393
394
395
if cl.Start.IsZero() {
396
cl.Start = msg.Time.Time()
397
}
0 commit comments