# HG changeset patch # User Elliott Sales de Andrade # Date 1268465185 0 # Node ID 7b310568cd878fedd73919e777907fc121896420 # Parent f6b2412e43515f4ee7a7ff7e42065fcbb3627419 Messages without TrID's should not be saved in the history. diff -r f6b2412e4351 -r 7b310568cd87 libpurple/protocols/msn/cmdproc.c --- a/libpurple/protocols/msn/cmdproc.c Fri Mar 12 02:29:13 2010 +0000 +++ b/libpurple/protocols/msn/cmdproc.c Sat Mar 13 07:26:25 2010 +0000 @@ -122,7 +122,8 @@ return; } - msn_history_add(cmdproc->history, trans); + if (trans->send_trId) + msn_history_add(cmdproc->history, trans); data = msn_transaction_to_string(trans);