From 7b82202f18c26c626d9e8973efdc26b3169d6d5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net> Date: Mon, 15 Feb 2021 18:54:00 -0500 Subject: [PATCH] Less tired. --- exec/load/http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/load/http.js b/exec/load/http.js index 58ed80bd1a..ca31a61394 100644 --- a/exec/load/http.js +++ b/exec/load/http.js @@ -220,7 +220,7 @@ HTTPRequest.prototype.Get=function(url, referer, base) { && this.response_headers_parsed.Location.length ) { this.follow_redirects--; - return this.Get(this.response_headers_parsed.Location[0], this.url.url, this.url.url); // To-do: be less tired and think about referer,base + return this.Get(this.response_headers_parsed.Location[0], this.url.url, this.url.url); } return(this.body); }; -- GitLab