diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-11-24 17:22:08 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-11-24 17:22:08 +0800 |
commit | dede4227bfc76afc52bf8c5584f40e4e3a025042 (patch) | |
tree | b0fc01aa897b85ecb384bc63ac35985874d68631 /libempathy/empathy-dispatcher.c | |
parent | 8d078b8bbd883be99bc4e7c08839f65c06cbf6a0 (diff) | |
download | gsoc2013-empathy-dede4227bfc76afc52bf8c5584f40e4e3a025042.tar gsoc2013-empathy-dede4227bfc76afc52bf8c5584f40e4e3a025042.tar.gz gsoc2013-empathy-dede4227bfc76afc52bf8c5584f40e4e3a025042.tar.bz2 gsoc2013-empathy-dede4227bfc76afc52bf8c5584f40e4e3a025042.tar.lz gsoc2013-empathy-dede4227bfc76afc52bf8c5584f40e4e3a025042.tar.xz gsoc2013-empathy-dede4227bfc76afc52bf8c5584f40e4e3a025042.tar.zst gsoc2013-empathy-dede4227bfc76afc52bf8c5584f40e4e3a025042.zip |
dispatcher_connection_new_channel_cb: set the room of the newly created chatroom. Fixes bug #560387 (Guillaume Desmottes).
svn path=/trunk/; revision=1918
Diffstat (limited to 'libempathy/empathy-dispatcher.c')
-rw-r--r-- | libempathy/empathy-dispatcher.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libempathy/empathy-dispatcher.c b/libempathy/empathy-dispatcher.c index 7f2d873e7..8be507abb 100644 --- a/libempathy/empathy-dispatcher.c +++ b/libempathy/empathy-dispatcher.c @@ -503,6 +503,7 @@ dispatcher_connection_new_channel_cb (TpConnection *connection, { chatroom = empathy_chatroom_new (account); empathy_chatroom_set_name (chatroom, room_ids[0]); + empathy_chatroom_set_room (chatroom, room_ids[0]); empathy_chatroom_manager_add (priv->chatroom_mgr, chatroom); } else |