Skip to content

Commit

Permalink
Merge pull request #164 from mimi1vx/patch-1
Browse files Browse the repository at this point in the history
Propagate err in checkReviewed
  • Loading branch information
grisu48 authored Sep 10, 2024
2 parents 281feaf + eb16cc1 commit df7e954
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/openqa-revtui/openqa.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func isReviewed(job gopenqa.Job, instance *gopenqa.Instance, checkParallel bool)
func checkReviewed(job int64, instance *gopenqa.Instance) (bool, error) {
comments, err := instance.GetComments(job)
if err != nil {
return false, nil
return false, err
}
for _, c := range comments {
if len(c.BugRefs) > 0 {
Expand Down

0 comments on commit df7e954

Please sign in to comment.