forked from mystiq/hydrogen-web
use same check for timestamp validity as timestamp can be undefined sometimes
This commit is contained in:
parent
8543ec00d0
commit
05821b0fdf
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ export class RoomTileViewModel extends ViewModel {
|
|||
// if either does not have a timestamp, put the one with a timestamp first
|
||||
if (myTimestampValid !== theirTimestampValid) {
|
||||
log("checking if either does not have lastMessageTimestamp ...", myTimestamp, theirTimestamp);
|
||||
if (theirTimestamp === null) {
|
||||
if (!theirTimestampValid) {
|
||||
return logResult(-1);
|
||||
}
|
||||
return logResult(1);
|
||||
|
|
Loading…
Reference in a new issue