mirror of https://github.com/vector-im/riot-web
encrypt for invited users if history visibility allows.
fixes https://github.com/vector-im/riot-web/issues/2713. requires equivalent branch in js-sdkpull/21833/head
parent
de33cf1afe
commit
1811d3f148
|
@ -44,7 +44,7 @@ export function markAllDevicesKnown(matrixClient, devices) {
|
|||
* module:crypto~DeviceInfo|DeviceInfo}.
|
||||
*/
|
||||
export function getUnknownDevicesForRoom(matrixClient, room) {
|
||||
const roomMembers = room.getJoinedMembers().map((m) => {
|
||||
const roomMembers = room.getEncryptionTargetMembers().map((m) => {
|
||||
return m.userId;
|
||||
});
|
||||
return matrixClient.downloadKeys(roomMembers, false).then((devices) => {
|
||||
|
|
Loading…
Reference in New Issue