Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
encrypt for invited users if history visibility allows.
Browse files Browse the repository at this point in the history
fixes element-hq/element-web#2713. requires equivalent branch in js-sdk
  • Loading branch information
ara4n committed Jul 4, 2018
1 parent de33cf1 commit 1811d3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cryptodevices.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down

0 comments on commit 1811d3f

Please sign in to comment.