mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 20:26:24 +00:00
Decrypt any IncomingIdentityKeyError still sticking around
FREEBIE
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user