diff options
Diffstat (limited to 'src/empathy-chat-window.c')
-rw-r--r-- | src/empathy-chat-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c index ab3de4092..6d160612d 100644 --- a/src/empathy-chat-window.c +++ b/src/empathy-chat-window.c @@ -454,9 +454,9 @@ chat_window_update_chat_tab (EmpathyChat *chat) empathy_contact_get_id (remote_contact), mc_account_get_display_name (account)); - status = empathy_contact_get_status (remote_contact); + status = empathy_contact_get_presence_message (remote_contact); - if (status) { + if (!EMP_STR_EMPTY (status)) { append_markup_printf (tooltip, "\n%s", status); } } |