diff options
Diffstat (limited to 'protocols/Steam/src/steam_chats.cpp')
-rw-r--r-- | protocols/Steam/src/steam_chats.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Steam/src/steam_chats.cpp b/protocols/Steam/src/steam_chats.cpp index 650e1bcfe1..248233166f 100644 --- a/protocols/Steam/src/steam_chats.cpp +++ b/protocols/Steam/src/steam_chats.cpp @@ -130,7 +130,7 @@ void CSteamProto::OnGetChatHistory(const CChatRoomGetMessageHistoryResponse &rep dbei.szModule = m_szModuleName; replaceStr(dbei.pBlob, mir_strdup(pMsg->message)); dbei.cbBlob = (int)mir_strlen(dbei.pBlob); - dbei.timestamp = pMsg->server_timestamp; + dbei.iTimestamp = pMsg->server_timestamp; dbei.szId = szMsgId; dbei.szUserId = szUserId; @@ -163,7 +163,7 @@ void CSteamProto::OnGetChatMessage(const CChatRoomIncomingChatMessageNotificatio dbei.szModule = m_szModuleName; replaceStr(dbei.pBlob, mir_strdup(reply.message)); dbei.cbBlob = (int)mir_strlen(dbei.pBlob); - dbei.timestamp = reply.timestamp; + dbei.iTimestamp = reply.timestamp; dbei.szId = szMsgId; dbei.szUserId = szUserId; |