Skip to content
Snippets Groups Projects
Commit 50e9cd90 authored by deuce's avatar deuce
Browse files

Accept any encoding, prefer 8-bit ASCII based ones.

parent a074a5fe
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment