There's no need to wrap this function inside a function afaict

This commit is contained in:
lilia 2014-10-09 18:54:23 -07:00
parent ae98b8680f
commit 266600e5ab

View file

@ -756,8 +756,7 @@ window.textsecure.subscribeToPush = function(message_callback) {
};
};
window.textsecure.registerSingleDevice = function() {
return function(number, verificationCode, stepDone) {
window.textsecure.registerSingleDevice = function(number, verificationCode, stepDone) {
var signalingKey = textsecure.crypto.getRandomBytes(32 + 20);
textsecure.storage.putEncrypted('signaling_key', signalingKey);
@ -783,7 +782,6 @@ window.textsecure.registerSingleDevice = function() {
});
});
}
}();
window.textsecure.registerSecondDevice = function(encodedDeviceInit, cryptoInfo, stepDone) {
var deviceInit = textsecure.protos.decodeDeviceInit(encodedDeviceInit);