From 0f6679425f6a736bb0128527dd99c085fac17d84 Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Mon, 26 Aug 2024 11:34:01 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=9C=A8=E6=B2=A1?= =?UTF-8?q?=E6=9C=89=E5=8B=BE=E9=80=89=E4=BD=BF=E7=94=A8=E4=BB=A3=E7=90=86?= =?UTF-8?q?=E7=9A=84=E6=83=85=E5=86=B5=E4=B8=8B=EF=BC=8C=E4=BB=8D=E7=84=B6?= =?UTF-8?q?=E4=BC=9A=E4=BD=BF=E7=94=A8=E4=BB=A3=E7=90=86=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/core/acme-client/src/http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/acme-client/src/http.js b/packages/core/acme-client/src/http.js index 150ed75d..d2afec33 100644 --- a/packages/core/acme-client/src/http.js +++ b/packages/core/acme-client/src/http.js @@ -55,7 +55,7 @@ class HttpClient { */ async request(url, method, opts = {}) { - if (this.urlMapping && this.urlMapping.mappings) { + if (this.urlMapping && this.urlMapping.enabled && this.urlMapping.mappings) { // eslint-disable-next-line no-restricted-syntax for (const key in this.urlMapping.mappings) { if (url.includes(key)) {