summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author <ole.andre.ravnaas@collabora.co.uk>2006-06-14 17:03:08 +0000
committer <ole.andre.ravnaas@collabora.co.uk>2006-06-14 17:03:08 +0000
commita25d0ce15427250125d8a06ab18e8bce2f246e01 (patch)
tree6e3fd3a2413ecde8d5afa02fe6c544ac17405136
parent4c798393990876a037a9025daab2408f0ffc292c (diff)
MUC: fixed copy 'n paste error causing the "name" property to never get picked up when discoing the room.
-rw-r--r--src/gabble-muc-channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gabble-muc-channel.c b/src/gabble-muc-channel.c
index 19a0242d9..edaa5e2ef 100644
--- a/src/gabble-muc-channel.c
+++ b/src/gabble-muc-channel.c
@@ -319,7 +319,7 @@ properties_disco_cb (GabbleDisco *disco,
name = lm_message_node_get_attribute (lm_node, "name");
if (NULL != type && 0 == strcmp (type, "text") &&
- NULL != category && 0 == strcmp (type, "conference") &&
+ NULL != category && 0 == strcmp (category, "conference") &&
NULL != name)
{
g_value_init (&val, G_TYPE_STRING);