diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-07-22 07:00:33 +0800 |
---|---|---|
committer | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-07-22 07:00:33 +0800 |
commit | 5fcaf2ec834ebd542ee6f434705acdfaf8a05368 (patch) | |
tree | 870f502608321ef24371c4b8d3297041f9705394 | |
parent | 36bfa50660b97ad74678e3cde0f6195154135fef (diff) | |
download | gsoc2013-empathy-5fcaf2ec834ebd542ee6f434705acdfaf8a05368.tar gsoc2013-empathy-5fcaf2ec834ebd542ee6f434705acdfaf8a05368.tar.gz gsoc2013-empathy-5fcaf2ec834ebd542ee6f434705acdfaf8a05368.tar.bz2 gsoc2013-empathy-5fcaf2ec834ebd542ee6f434705acdfaf8a05368.tar.lz gsoc2013-empathy-5fcaf2ec834ebd542ee6f434705acdfaf8a05368.tar.xz gsoc2013-empathy-5fcaf2ec834ebd542ee6f434705acdfaf8a05368.tar.zst gsoc2013-empathy-5fcaf2ec834ebd542ee6f434705acdfaf8a05368.zip |
If the requested property is missing, assume we didn't request it
MC5 tries to handle channels only signalled by the old NewChannel signal, but
the Requested property isn't set in that case. Assume that we didn't request it
in that case
-rw-r--r-- | libempathy/empathy-dispatcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-dispatcher.c b/libempathy/empathy-dispatcher.c index bce9f7610..0b2a74a2e 100644 --- a/libempathy/empathy-dispatcher.c +++ b/libempathy/empathy-dispatcher.c @@ -709,7 +709,7 @@ dispatcher_connection_new_channel_with_properties ( if (!valid) { g_message ("%s had an invalid Requested property", object_path); - return; + requested = FALSE; } dispatcher_connection_new_channel (dispatcher, connection, |