From 1bfd0b0b6206051b9fa09d63f3fd00357e243c53 Mon Sep 17 00:00:00 2001 From: mayue Date: Mon, 18 Oct 2021 16:55:50 +0800 Subject: [PATCH] * Fix bug #15506. --- module/gitlab/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/gitlab/control.php b/module/gitlab/control.php index 28eaf84610..1cf745f44e 100644 --- a/module/gitlab/control.php +++ b/module/gitlab/control.php @@ -138,7 +138,7 @@ class gitlab extends control */ public function bindUser($gitlabID) { - $userPairs = $this->loadModel('user')->getPairs(); + $userPairs = $this->loadModel('user')->getPairs('noclosed'); $gitlab = $this->gitlab->getByID($gitlabID); $user = $this->gitlab->apiGetCurrentUser($gitlab->url, $gitlab->token);