Use Message received_at_ms to hide typing bubble

This commit is contained in:
ayumi-signal 2023-11-03 17:55:12 -07:00 committed by GitHub
parent a2cfaa81a4
commit dca32747db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View file

@ -44,8 +44,8 @@ export function SmartTypingBubble({
if ('author' in lastItem.data) {
lastItemAuthorId = lastItem.data.author?.id;
}
if ('timestamp' in lastItem.data) {
lastItemTimestamp = lastItem.data.timestamp;
if ('receivedAtMS' in lastItem.data) {
lastItemTimestamp = lastItem.data.receivedAtMS;
}
}