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

Commit

Permalink
Merge pull request #2042 from matrix-org/matthew/encrypt-for-invited-…
Browse files Browse the repository at this point in the history
…users

encrypt for invited users if history visibility allows.
  • Loading branch information
ara4n authored Jul 10, 2018
2 parents 02c6f3d + 1811d3f commit b482a4c
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 b482a4c

Please sign in to comment.