mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 11:35:04 +01:00
Merge pull request #68 from vector-im/bwindels/fix-room-sorting-stability
use same check for timestamp validity
This commit is contained in:
commit
a6d92b7c17
@ -87,7 +87,7 @@ export class RoomTileViewModel extends ViewModel {
|
|||||||
// if either does not have a timestamp, put the one with a timestamp first
|
// if either does not have a timestamp, put the one with a timestamp first
|
||||||
if (myTimestampValid !== theirTimestampValid) {
|
if (myTimestampValid !== theirTimestampValid) {
|
||||||
log("checking if either does not have lastMessageTimestamp ...", myTimestamp, theirTimestamp);
|
log("checking if either does not have lastMessageTimestamp ...", myTimestamp, theirTimestamp);
|
||||||
if (theirTimestamp === null) {
|
if (!theirTimestampValid) {
|
||||||
return logResult(-1);
|
return logResult(-1);
|
||||||
}
|
}
|
||||||
return logResult(1);
|
return logResult(1);
|
||||||
|
Loading…
Reference in New Issue
Block a user