From: Rob Bradford Date: Fri, 2 Oct 2009 15:04:10 +0000 (+0100) Subject: Bring up notifications until the conversation is accepted (#597125) X-Git-Url: https://git.0d.be/?p=empathy.git;a=commitdiff_plain;h=abb123fcefb5ca1ecdeeb8ca2813de20da9f7e09 Bring up notifications until the conversation is accepted (#597125) Rather than filter out message received signals for new conversations that have already been tried to be initiated let them pass through. This results in you getting notifications repeatedly until you open accept the conversation and open the conversation window with the user. --- diff --git a/src/empathy-event-manager.c b/src/empathy-event-manager.c index 18819410..c68458d6 100644 --- a/src/empathy-event-manager.c +++ b/src/empathy-event-manager.c @@ -370,13 +370,6 @@ event_manager_chat_message_received_cb (EmpathyTpChat *tp_chat, * queue. */ event = event_lookup_by_approval (approval->manager, approval); - if (event != NULL && event->inhibit && approval->handler != 0) - { - g_signal_handler_disconnect (tp_chat, approval->handler); - approval->handler = 0; - return; - } - sender = empathy_message_get_sender (message); header = empathy_contact_get_name (sender); msg = empathy_message_get_body (message);