diff --git a/exec/load/http.js b/exec/load/http.js
index 58ed80bd1a8bde5c9cefb1afbddc6349681d85db..ca31a61394e3ffeb362251cb432f8944a3ce7e72 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);
 };