# HG changeset patch # User Mikael Berthe # Date 1203490151 -3600 # Node ID 99d95d4ea806322a07bc28c3b18ff87f08f0af72 # Parent 5667048423db969aa86a8dffac10a5d656adc842 No need to explicitly reset auto-away for directed presence messages diff -r 5667048423db -r 99d95d4ea806 mcabber/src/commands.c --- a/mcabber/src/commands.c Tue Feb 19 22:56:18 2008 +0100 +++ b/mcabber/src/commands.c Wed Feb 20 07:49:11 2008 +0100 @@ -804,7 +804,8 @@ // It makes sense to reset autoaway before changing the status // (esp. for FIFO or remote commands) or the behaviour could be // unexpected... - scr_CheckAutoAway(TRUE); + if (!recipient) + scr_CheckAutoAway(TRUE); paramlst = split_arg(arg, 2, 1); // status, message status = *paramlst;