diff options
-rw-r--r-- | libempathy/empathy-dispatch-operation.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libempathy/empathy-dispatch-operation.c b/libempathy/empathy-dispatch-operation.c index 7f3357b8f..7c3079452 100644 --- a/libempathy/empathy-dispatch-operation.c +++ b/libempathy/empathy-dispatch-operation.c @@ -26,6 +26,7 @@ #include <libempathy/empathy-enum-types.h> #include <libempathy/empathy-tp-chat.h> #include <libempathy/empathy-tp-call.h> +#include <libempathy/empathy-tp-file.h> #include "empathy-marshal.h" @@ -359,6 +360,11 @@ empathy_dispatch_operation_channel_ready_cb (TpChannel *channel, EmpathyTpCall *call = empathy_tp_call_new (channel); priv->channel_wrapper = G_OBJECT (call); } + else if (channel_type == EMP_IFACE_QUARK_CHANNEL_TYPE_FILE_TRANSFER) + { + EmpathyTpFile *file = empathy_tp_file_new (channel); + priv->channel_wrapper = G_OBJECT (file); + } out: empathy_dispatch_operation_set_status (self, |