From 50e9cd904626925c2075741bd0f96e3f2ba51e17 Mon Sep 17 00:00:00 2001
From: deuce <>
Date: Thu, 2 Jun 2011 01:42:47 +0000
Subject: [PATCH] Accept any encoding, prefer 8-bit ASCII based ones.

---
 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 69b17056f3..dc14e15fcb 100644
--- a/exec/load/http.js
+++ b/exec/load/http.js
@@ -22,7 +22,7 @@ function HTTPRequest()
 			this.request_headers.push("Via: "+client.protocol.toLowerCase()+"/1.0 "+system.name);
 		// Request Headers
 		this.request_headers.push("Accept: text/*");
-		this.request_headers.push("Accept-Charset: ISO-8859-13,Latin-9,ISO-8859-15");
+		this.request_headers.push("Accept-Charset: ISO-8859-13,Latin-9,ISO-8859-15,ISO-8859-1,*;q=0.1");
 		this.request_headers.push("Accept-Encoding: ");
 		this.request_headers.push("Host: "+this.url.host);
 		if(this.referer != undefined)
-- 
GitLab