From 83faa7a9ea598a8e33cf4c18437d58e1e13f0883 Mon Sep 17 00:00:00 2001 From: Christian Menapace <49369365+cmenapace@users.noreply.github.com> Date: Tue, 30 Apr 2024 13:05:53 +0200 Subject: [PATCH] Update RestApi.php --- library/Jira/RestApi.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/Jira/RestApi.php b/library/Jira/RestApi.php index 872ebe4..e5108c7 100644 --- a/library/Jira/RestApi.php +++ b/library/Jira/RestApi.php @@ -450,8 +450,8 @@ protected function request($method, $url, $body = null) CURLOPT_SSL_VERIFYHOST => false, CURLOPT_SSL_VERIFYPEER => false, ); - - if($this->proxy) { + + if ($this->proxy) { $opts[CURLOPT_PROXY] = $this->proxy; }