mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
Fix: pick last active DM for verification request
This commit is contained in:
parent
053a5a5ff4
commit
e3e40ace81
1 changed files with 3 additions and 0 deletions
|
@ -174,6 +174,9 @@ export function findDMForUser(client, userId) {
|
|||
return member && (member.membership === "invite" || member.membership === "join");
|
||||
}
|
||||
return false;
|
||||
}).sort((r1, r2) => {
|
||||
return r2.getLastActiveTimestamp() -
|
||||
r1.getLastActiveTimestamp();
|
||||
});
|
||||
if (suitableDMRooms.length) {
|
||||
return suitableDMRooms[0];
|
||||
|
|
Loading…
Reference in a new issue