1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-28 05:03:59 +03:00

actually, comment should be 1 line higher

This commit is contained in:
Bruno Windels
2018-07-20 13:33:36 +02:00
parent 0d2ac42dc4
commit 531ccf1819

View File

@@ -767,7 +767,6 @@ MatrixClient.prototype.loadRoomMembersIfNeeded = async function(roomId) {
if (!room || !room.membersNeedLoading()) { if (!room || !room.membersNeedLoading()) {
return; return;
} }
const joinedMembersPromise = this.joinedMembers(roomId);
// XXX: we should make sure that the members we get back represent the // XXX: we should make sure that the members we get back represent the
// room state at a given point in time. The plan is to do this by // room state at a given point in time. The plan is to do this by
// passing the current next_batch sync token to the endpoint we use // passing the current next_batch sync token to the endpoint we use
@@ -776,6 +775,7 @@ MatrixClient.prototype.loadRoomMembersIfNeeded = async function(roomId) {
// so there is a race condition here between the current /sync call // so there is a race condition here between the current /sync call
// and the /joined_members call: if the have conflicting information, which one // and the /joined_members call: if the have conflicting information, which one
// represents the most recent state? // represents the most recent state?
const joinedMembersPromise = this.joinedMembers(roomId);
const membersPromise = joinedMembersPromise.then((profiles) => { const membersPromise = joinedMembersPromise.then((profiles) => {
return Object.entries(profiles.joined).map(([userId, profile]) => { return Object.entries(profiles.joined).map(([userId, profile]) => {
return { return {