mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 03:25:12 +01:00
debug room lastsortkey not loading in chrome (but does in FF!)
This commit is contained in:
parent
be8544aa48
commit
07fed669f6
@ -10,8 +10,10 @@ export default class RoomPersister {
|
|||||||
//fetch key here instead?
|
//fetch key here instead?
|
||||||
const [lastEvent] = await txn.roomTimeline.lastEvents(this._roomId, 1);
|
const [lastEvent] = await txn.roomTimeline.lastEvents(this._roomId, 1);
|
||||||
if (lastEvent) {
|
if (lastEvent) {
|
||||||
console.log("room persister load", this._roomId, lastEvent);
|
|
||||||
this._lastSortKey = new SortKey(lastEvent.sortKey);
|
this._lastSortKey = new SortKey(lastEvent.sortKey);
|
||||||
|
console.log("room persister load", this._roomId, this._lastSortKey.toString());
|
||||||
|
} else {
|
||||||
|
console.warn("could not recover last sort key for ", this._roomId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user