diff options
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-chat.c | 4 | ||||
-rw-r--r-- | libempathy-gtk/empathy-new-call-dialog.c | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index d1442d816..6bcaa84bc 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -819,8 +819,8 @@ chat_command_msg_internal (EmpathyChat *chat, data->chat = chat; data->message = g_strdup (message); - tp_account_channel_request_ensure_and_observe_channel_async (req, NULL, NULL, - chat_command_msg_cb, data); + tp_account_channel_request_ensure_and_observe_channel_async (req, + EMPATHY_CHAT_BUS_NAME, NULL, chat_command_msg_cb, data); g_object_unref (req); g_hash_table_unref (request); diff --git a/libempathy-gtk/empathy-new-call-dialog.c b/libempathy-gtk/empathy-new-call-dialog.c index 2d35fadec..fbff2770e 100644 --- a/libempathy-gtk/empathy-new-call-dialog.c +++ b/libempathy-gtk/empathy-new-call-dialog.c @@ -31,6 +31,7 @@ #include <libempathy/empathy-tp-contact-factory.h> #include <libempathy/empathy-contact-manager.h> #include <libempathy/empathy-utils.h> +#include <libempathy/empathy-request-util.h> #define DEBUG_FLAG EMPATHY_DEBUG_CONTACT #include <libempathy/empathy-debug.h> @@ -108,8 +109,8 @@ call_contact (TpAccount *account, req = tp_account_channel_request_new (account, request, timestamp); - tp_account_channel_request_create_channel_async (req, NULL, NULL, - create_media_channel_cb, NULL); + tp_account_channel_request_create_channel_async (req, EMPATHY_AV_BUS_NAME, + NULL, create_media_channel_cb, NULL); g_object_unref (req); } |