mirror of https://github.com/vector-im/riot-web
KeyRequestHandler: clear redundant users/devices on cancellations
... otherwise _processNextRequest will get confusedpull/21833/head
parent
a3a262b150
commit
7a9784fd6e
|
@ -88,6 +88,12 @@ export default class KeyRequestHandler {
|
|||
}
|
||||
console.log("Forgetting room key request");
|
||||
requests.splice(idx, 1);
|
||||
if (requests.length === 0) {
|
||||
delete this._pendingKeyRequests[userId][deviceId];
|
||||
if (Object.keys(this._pendingKeyRequests[userId]).length === 0) {
|
||||
delete this._pendingKeyRequests[userId];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
_processNextRequest() {
|
||||
|
|
Loading…
Reference in New Issue