diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2009-12-26 16:14:52 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2009-12-26 16:14:52 +0100 |
commit | a19ea7a21e082d0e28aea7198bea0f3bd3e2eb4f (patch) | |
tree | 5f3105d56fb5930938f3dce474fd53b3a5d942fd | |
parent | 5674207b09a856149c110040f7f672182a04dee5 (diff) |
Use purple_buddy_get_name, not purple_buddy_get_contact_alias. Makes sense,
but I'm actually not sure if this function *is* the right one.
Fixes issues with messages coming from the wrong handle.
-rw-r--r-- | protocols/purple/purple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/purple/purple.c b/protocols/purple/purple.c index f28e5cf0..ce7f0e56 100644 --- a/protocols/purple/purple.c +++ b/protocols/purple/purple.c @@ -414,7 +414,7 @@ static void prplcb_conv_im( PurpleConversation *conv, const char *who, const cha buddy = purple_find_buddy( conv->account, who ); if( buddy != NULL ) - who = purple_buddy_get_contact_alias( buddy ); + who = purple_buddy_get_name( buddy ); imcb_buddy_msg( ic, (char*) who, (char*) message, 0, mtime ); } |