libpurple/server.c

changeset 36108
69b4fce85ffa
parent 36098
4951752ad038
child 37153
c0eccc6696da
--- a/libpurple/server.c	Thu Jun 12 22:02:46 2014 +0530
+++ b/libpurple/server.c	Thu Jun 12 18:45:07 2014 +0200
@@ -935,7 +935,12 @@
 	purple_signal_emit(purple_conversations_get_handle(), "received-chat-msg", purple_connection_get_account(g),
 					 who, message, chat, flags);
 
-	pmsg = purple_message_new_incoming(who, message, flags, mtime);
+	if (flags & PURPLE_MESSAGE_RECV)
+		pmsg = purple_message_new_incoming(who, message, flags, mtime);
+	else {
+		pmsg = purple_message_new_outgoing(who, message, flags);
+		purple_message_set_time(pmsg, mtime);
+	}
 	purple_conversation_write_message(PURPLE_CONVERSATION(chat), pmsg);
 
 	g_free(angel);

mercurial