|
|
@ -16,11 +16,19 @@ I2PControl.Session.prototype = { |
|
|
|
var self = this; |
|
|
|
var self = this; |
|
|
|
request.onreadystatechange = function() { |
|
|
|
request.onreadystatechange = function() { |
|
|
|
if(this.readyState == 4 && this.status == "200" && this.responseText != "") { |
|
|
|
if(this.readyState == 4 && this.status == "200" && this.responseText != "") { |
|
|
|
var result = JSON.parse(this.responseText).result; |
|
|
|
var data = JSON.parse(this.responseText); |
|
|
|
if(result.hasOwnProperty("error")) { |
|
|
|
if(data.hasOwnProperty("error")) { |
|
|
|
self.error = true; |
|
|
|
if(data["error"]["code"] == -32003 || data["error"]["code"] == -32004) { |
|
|
|
|
|
|
|
// Get a new token and resend the request
|
|
|
|
|
|
|
|
self.start(function() { |
|
|
|
|
|
|
|
self.request(method, params, handler); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
handler(result, self); |
|
|
|
// Cannot fix the error, report it
|
|
|
|
|
|
|
|
self.error = data["error"]; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
handler(data.result, self); |
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
}; |
|
|
|
if(this.token != "") |
|
|
|
if(this.token != "") |
|
|
|