Skip to content

Commit

Permalink
fix: fixed the error of null value of lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
yunnysunny committed Jan 20, 2022
1 parent 77b052a commit 07e748f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node/index.js
Expand Up @@ -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));
}

Expand Down

0 comments on commit 07e748f

Please sign in to comment.