Mistakenly set the secured connection to false

This commit is contained in:
斟酌 鵬兄 2016-04-29 09:58:59 +08:00
parent cbf2246b52
commit 5119363569

View File

@ -31,14 +31,14 @@ class HttpRequest extends EventEmitter
{
super();
this.Secured = false;
this.SetUrl( Url );
this.Method = "GET";
this.Headers = Headers || {
"User-Agent": "BotanSS HttpRequest"
};
this.Secured = false;
}
SetUrl( Url )