mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-08 16:44:56 -04:00
Follow API renaming. state -> presence. mtime_ago -> last_active_ago
This commit is contained in:
parent
74cffcf51a
commit
0271e8e692
3 changed files with 15 additions and 16 deletions
|
@ -70,7 +70,7 @@ angular.module('matrixWebClient')
|
|||
});
|
||||
|
||||
filtered.sort(function (a, b) {
|
||||
return ((a["mtime_age"] || 10e10) > (b["mtime_age"] || 10e10) ? 1 : -1);
|
||||
return ((a["last_active_ago"] || 10e10) > (b["last_active_ago"] || 10e10) ? 1 : -1);
|
||||
});
|
||||
return filtered;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue