Decrypt any IncomingIdentityKeyError still sticking around
FREEBIE
This commit is contained in:
parent
67cb9bdf54
commit
8700112f6d
6 changed files with 351 additions and 31 deletions
|
@ -30,7 +30,9 @@
|
|||
ReplayableError.prototype.constructor = ReplayableError;
|
||||
|
||||
ReplayableError.prototype.replay = function() {
|
||||
return registeredFunctions[this.functionCode].apply(window, this.args);
|
||||
var argumentsAsArray = Array.prototype.slice.call(arguments, 0);
|
||||
var args = this.args.concat(argumentsAsArray);
|
||||
return registeredFunctions[this.functionCode].apply(window, args);
|
||||
};
|
||||
|
||||
function IncomingIdentityKeyError(number, message, key) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue