changeset 83e7b7f1c792 in /home/hg/repos/gajim

details:http://hg.gajim.org/gajim?cmd=changeset;node=83e7b7f1c792
description: Fix the function that checks if we should log message. Fixes #6873

diffstat:

 src/common/stanza_session.py |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (13 lines):

diff -r 37b3176f7157 -r 83e7b7f1c792 src/common/stanza_session.py
--- a/src/common/stanza_session.py      Tue Apr 26 14:29:07 2011 +0200
+++ b/src/common/stanza_session.py      Sun May 01 18:31:44 2011 +0200
@@ -78,7 +78,8 @@
         self.negotiated = {}
 
     def is_loggable(self):
-        return self.loggable and gajim.config.should_log(self.conn.name, 
self.jid)
+        return self.loggable and gajim.config.should_log(self.conn.name,
+            self.jid.getStripped())
 
     def get_to(self):
         to = str(self.jid)
_______________________________________________
Commits mailing list
[email protected]
http://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to