Skip to content
Snippets Groups Projects
Commit 96627d44 authored by David Baker's avatar David Baker
Browse files

Port membertile fix

parent 38385696
Branches
Tags
No related merge requests found
......@@ -58,7 +58,9 @@ module.exports = {
function updateUserState(event, user) {
var tile = self.refs[user.userId];
if (tile) {
tile.forceUpdate();
// update the whole list to get the order right, not just this cell...
self.forceUpdate();
// tile.forceUpdate();
}
}
MatrixClientPeg.get().on("User.presence", updateUserState);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment