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

Support the https scheme for POSTs, do not add an extra CRLF after an

Authentication header.
parent a3716dd0
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ function HTTPRequest(username,password)
this.referer=referer;
this.base=base;
this.url=new URL(url, this.base);
if(this.url.scheme!='http')
if(this.url.scheme!='http' && this.url.scheme!='https')
throw("Unknown scheme! '"+this.url.scheme+"'");
if(this.url.path=='')
this.url.path='/';
......@@ -151,7 +151,7 @@ function HTTPRequest(username,password)
}
if(this.username && this.password) {
var auth = base64_encode(this.username + ":" + this.password);
this.request_headers.push("Authorization: Basic " + auth + "\r\n");
this.request_headers.push("Authorization: Basic " + auth);
}
}
......
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