From 55a33c37e737d801a28bf7e75f828090ef67b224 Mon Sep 17 00:00:00 2001 From: MikalaiR Date: Wed, 2 Sep 2015 11:47:10 +0000 Subject: SkypeWeb: fixed messageid problems (test it!) git-svn-id: http://svn.miranda-ng.org/main/trunk@15147 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/SkypeWeb/src/skype_chatrooms.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'protocols/SkypeWeb/src/skype_chatrooms.cpp') diff --git a/protocols/SkypeWeb/src/skype_chatrooms.cpp b/protocols/SkypeWeb/src/skype_chatrooms.cpp index 7be0b232d8..5cd6536814 100644 --- a/protocols/SkypeWeb/src/skype_chatrooms.cpp +++ b/protocols/SkypeWeb/src/skype_chatrooms.cpp @@ -403,9 +403,9 @@ void CSkypeProto::OnSendChatMessage(const TCHAR *chat_id, const TCHAR * tszMessa ptrA szChatId(mir_t2a(chat_id)); ptrA szMessage(mir_utf8encodeT(tszMessage)); if (strncmp(szMessage, "/me ", 4) == 0) - SendRequest(new SendChatActionRequest(szChatId, GenerateMessageId(), szMessage, li)); + SendRequest(new SendChatActionRequest(szChatId, time(NULL), szMessage, li)); else - SendRequest(new SendChatMessageRequest(szChatId, GenerateMessageId(), szMessage, li)); + SendRequest(new SendChatMessageRequest(szChatId, time(NULL), szMessage, li)); } void CSkypeProto::AddMessageToChat(const TCHAR *chat_id, const TCHAR *from, const char *content, bool isAction, int emoteOffset, time_t timestamp, bool isLoading) -- cgit v1.2.3