From 07e748f8d663de0d9a69f8f455c5ed3d3ab79020 Mon Sep 17 00:00:00 2001 From: yunnysunny Date: Thu, 20 Jan 2022 13:34:39 +0800 Subject: [PATCH] fix: fixed the error of null value of lookup --- src/node/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/index.js b/src/node/index.js index c478ac9f3..0787f156d 100644 --- a/src/node/index.js +++ b/src/node/index.js @@ -167,7 +167,7 @@ function Request(method, url) { this.qsRaw = this._query; // Unused, for backwards compatibility only this._redirectList = []; this._streamRequest = false; - this._lookup = null; + this._lookup = undefined; this.once('end', this.clearTimeout.bind(this)); }