# HG changeset patch # User Evan Schoenberg # Date 1231938815 0 # Node ID 222595cbad929f54da4e6952e047a1ea62e1c820 # Parent fbef4cf4c783784a6643ea89af212dccafe5af2e AIM Direct IM messages should not be flagged as auto responses unless they actually are. diff -r fbef4cf4c783 -r 222595cbad92 libpurple/protocols/oscar/oscar.c --- a/libpurple/protocols/oscar/oscar.c Mon Jan 12 19:02:56 2009 +0000 +++ b/libpurple/protocols/oscar/oscar.c Wed Jan 14 13:13:35 2009 +0000 @@ -4337,8 +4337,7 @@ } g_string_free(data, TRUE); - peer_odc_send_im(conn, msg->str, msg->len, charset, - imflags & PURPLE_MESSAGE_AUTO_RESP); + peer_odc_send_im(conn, msg->str, msg->len, charset, imflags); g_string_free(msg, TRUE); }