From 1a105be05f0dfbf4085cf03854dd241a90f5d490 Mon Sep 17 00:00:00 2001 From: Wanderson Ferreira Date: Sun, 10 Oct 2021 00:31:38 -0300 Subject: [PATCH] fix if correct order --- github-review.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/github-review.el b/github-review.el index c7177d5..a00b082 100644 --- a/github-review.el +++ b/github-review.el @@ -409,9 +409,9 @@ This function infers the PR name based on the current filename" 'commit_id head-sha 'event kind)) (review (if (equal nil regular-comments) - (a-assoc partial-review - 'comments regular-comments) - partial-review))) + partial-review + (a-assoc partial-review + 'comments regular-comments)))) (when (and github-review-reply-inline-comments reply-comments)