summaryrefslogtreecommitdiffstats
path: root/src/gui/Ephraim.vala
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2010-08-17 00:22:21 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2010-08-17 00:22:21 +0200
commit6ec7efc36f44dfddff4c9d843cd4c70cffb95837 (patch)
tree35475563668e508b711517827fba6e2aeb54a0a3 /src/gui/Ephraim.vala
parenteb4193538b99cf9d49ad0650b1bb816844361ab5 (diff)
downloadephraim-6ec7efc36f44dfddff4c9d843cd4c70cffb95837.tar
ephraim-6ec7efc36f44dfddff4c9d843cd4c70cffb95837.zip
Many improvements to roster view
Diffstat (limited to 'src/gui/Ephraim.vala')
-rw-r--r--src/gui/Ephraim.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/Ephraim.vala b/src/gui/Ephraim.vala
index f13516e..b0e2571 100644
--- a/src/gui/Ephraim.vala
+++ b/src/gui/Ephraim.vala
@@ -42,7 +42,7 @@ public class Ephraim {
});
coreconn.chat_message.connect((jid, type, from, message) => {
- if(!(jid in conversations))
+ if(!(jid in conversations.keys))
return;
conversations[jid].chat_message(type, from, message);