Add quotation marks to XHR method, url
This commit is contained in:
@@ -593,7 +593,7 @@
|
|||||||
requestString.push('const xhr = new XMLHttpRequest()');
|
requestString.push('const xhr = new XMLHttpRequest()');
|
||||||
const user = this.auth === 'Basic' ? this.httpUser : null
|
const user = this.auth === 'Basic' ? this.httpUser : null
|
||||||
const pswd = this.auth === 'Basic' ? this.httpPassword : null
|
const pswd = this.auth === 'Basic' ? this.httpPassword : null
|
||||||
requestString.push('xhr.open(' + this.method + ', ' + this.url + this.path + this.queryString + ', true, ' +
|
requestString.push('xhr.open("' + this.method + '", "' + this.url + this.path + this.queryString + '", true, ' +
|
||||||
user + ', ' + pswd + ')');
|
user + ', ' + pswd + ')');
|
||||||
if (this.auth === 'Bearer Token') {
|
if (this.auth === 'Bearer Token') {
|
||||||
requestString.push("xhr.setRequestHeader('Authorization', 'Bearer ' + " + this.bearerToken + ")");
|
requestString.push("xhr.setRequestHeader('Authorization', 'Bearer ' + " + this.bearerToken + ")");
|
||||||
|
|||||||
Reference in New Issue
Block a user