You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by zh...@apache.org on 2022/08/07 13:01:58 UTC

[incubator-devlake] 01/06: fix: github.ExtractApiPullRequestReviews panic

This is an automated email from the ASF dual-hosted git repository.

zhangliang2022 pushed a commit to branch release-v0.12
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git

commit 2cc654162e6b0fb2e80a6dfb0dff2f68d47d68b0
Author: zhangliang <li...@merico.dev>
AuthorDate: Mon Aug 1 20:30:19 2022 +0800

    fix: github.ExtractApiPullRequestReviews panic
---
 plugins/github/tasks/pr_review_extractor.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/github/tasks/pr_review_extractor.go b/plugins/github/tasks/pr_review_extractor.go
index aed145d4..f994a0e0 100644
--- a/plugins/github/tasks/pr_review_extractor.go
+++ b/plugins/github/tasks/pr_review_extractor.go
@@ -71,7 +71,7 @@ func ExtractApiPullRequestReviews(taskCtx core.SubTaskContext) error {
 			if err != nil {
 				return nil, err
 			}
-			if apiPullRequestReview.State == "PENDING" {
+			if apiPullRequestReview.State == "PENDING" || apiPullRequestReview.User == nil {
 				return nil, nil
 			}
 			pull := &SimplePr{}