Wed, 23 Aug 2000 02:43:34 +0000
[gaim-migrate @ 755]
apply aliases of self
| src/conversation.c | file | annotate | diff | comparison | revisions |
--- a/src/conversation.c Wed Aug 23 01:15:10 2000 +0000 +++ b/src/conversation.c Wed Aug 23 02:43:34 2000 +0000 @@ -1094,9 +1094,13 @@ struct buddy *b; if (!who) { - if (flags & WFLAG_SEND) - who = current_user->username; - else { + if (flags & WFLAG_SEND) { + b = find_buddy(current_user->username); + if (b) + who = b->show; + else + who = current_user->username; + } else { b = find_buddy(c->name); if (b) who = b->show;