From c69c05c15d335cf915ff58ceb7a9d32dd99a6fb8 Mon Sep 17 00:00:00 2001 From: lilia Date: Sun, 9 Nov 2014 18:58:05 -0800 Subject: [PATCH] Remove obsolete argument --- js/protocol.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/protocol.js b/js/protocol.js index 94ac5137..ac429107 100644 --- a/js/protocol.js +++ b/js/protocol.js @@ -738,7 +738,7 @@ window.textsecure.protocol = function() { }); } if (identityKeyPair === undefined) - return crypto_storage.getNewStoredKeyPair("identityKey", true).then(function(keyPair) { return identityKeyCalculated(keyPair); }); + return crypto_storage.getNewStoredKeyPair("identityKey").then(function(keyPair) { return identityKeyCalculated(keyPair); }); else return identityKeyCalculated(identityKeyPair); }