mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 04:09:49 +00:00
Async remove identity
This commit is contained in:
@@ -38135,7 +38135,7 @@ axolotlInternal.RecipientRecord = function() {
|
||||
|
||||
// Use textsecure.storage.devices.removeIdentityKeyForNumber (which calls this) instead
|
||||
_removeIdentityKeyForNumber: function(number) {
|
||||
textsecure.storage.remove("sessions" + number);
|
||||
return Promise.resolve(textsecure.storage.remove("sessions" + number));
|
||||
},
|
||||
|
||||
};
|
||||
@@ -38187,7 +38187,7 @@ axolotlInternal.RecipientRecord = function() {
|
||||
if (map === undefined)
|
||||
throw new Error("Tried to remove identity for unknown number");
|
||||
textsecure.storage.remove("devices" + number);
|
||||
textsecure.storage.sessions._removeIdentityKeyForNumber(number);
|
||||
return textsecure.storage.sessions._removeIdentityKeyForNumber(number);
|
||||
},
|
||||
|
||||
getDeviceObject: function(encodedNumber) {
|
||||
|
||||
Reference in New Issue
Block a user