fix(ui): dom parsing with inactivity timestamps

This commit is contained in:
Shekar Siri 2023-07-12 17:41:13 +02:00
parent a1e12ed276
commit 8dd0bfc6cd

View file

@ -93,7 +93,10 @@ export default class MFileReader extends RawMessageReader {
this.startTime = rMsg.timestamp
}
this.currentTime = rMsg.timestamp - this.startTime
return this.readNext()
return {
tp: 9999,
time: this.currentTime,
}
}
const index = this.noIndexes ? 0 : this.getLastMessageID()