Remove obsolete argument
This commit is contained in:
parent
0ff3d438be
commit
c69c05c15d
1 changed files with 1 additions and 1 deletions
|
@ -738,7 +738,7 @@ window.textsecure.protocol = function() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (identityKeyPair === undefined)
|
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
|
else
|
||||||
return identityKeyCalculated(identityKeyPair);
|
return identityKeyCalculated(identityKeyPair);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue