mirror of
https://github.com/tulir/mautrix-whatsapp
synced 2024-12-13 17:13:11 +01:00
Fix last message timestamp in history_sync_conversation table
This commit is contained in:
parent
f39fff3285
commit
60496e5976
1 changed files with 2 additions and 2 deletions
|
@ -80,8 +80,8 @@ func (hsq *HistorySyncQuery) NewConversationWithValues(
|
|||
UserID: userID,
|
||||
ConversationID: conversationID,
|
||||
PortalKey: portalKey,
|
||||
LastMessageTimestamp: time.Unix(int64(lastMessageTimestamp), 0),
|
||||
MuteEndTime: time.Unix(int64(muteEndTime), 0),
|
||||
LastMessageTimestamp: time.Unix(int64(lastMessageTimestamp), 0).UTC(),
|
||||
MuteEndTime: time.Unix(int64(muteEndTime), 0).UTC(),
|
||||
Archived: archived,
|
||||
Pinned: pinned,
|
||||
DisappearingMode: disappearingMode,
|
||||
|
|
Loading…
Reference in a new issue