summaryrefslogtreecommitdiff
path: root/poezio/tabs
diff options
context:
space:
mode:
authorMaxime “pep” Buquet <pep@bouah.net>2019-04-07 23:52:30 +0100
committerMaxime “pep” Buquet <pep@bouah.net>2019-04-07 23:52:30 +0100
commita21335ac171a827a613dcce744898e822689c9d3 (patch)
treef07d9af1d0e504adea718fa93e8a3736efa344f8 /poezio/tabs
parente256c31875c8b67d85fe30d3e2c14c896066657a (diff)
downloadpoezio-a21335ac171a827a613dcce744898e822689c9d3.tar.gz
poezio-a21335ac171a827a613dcce744898e822689c9d3.tar.bz2
poezio-a21335ac171a827a613dcce744898e822689c9d3.tar.xz
poezio-a21335ac171a827a613dcce744898e822689c9d3.zip
Remove more safeJID calls
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
Diffstat (limited to 'poezio/tabs')
-rw-r--r--poezio/tabs/basetabs.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/poezio/tabs/basetabs.py b/poezio/tabs/basetabs.py
index 5dc94ff8..c6d8b6b6 100644
--- a/poezio/tabs/basetabs.py
+++ b/poezio/tabs/basetabs.py
@@ -534,7 +534,9 @@ class ChatTab(Tab):
"""
Log the messages in the archives.
"""
- name = safeJID(self.name).bare
+ if self.name is None:
+ return None
+ name = self.name.bare
if not logger.log_message(name, nickname, txt, date=time, typ=typ):
self.core.information('Unable to write in the log file', 'Error')
@@ -811,7 +813,7 @@ class OneToOneTab(ChatTab):
return
self.__status = status
hide_status_change = config.get_by_tabname('hide_status_change',
- safeJID(self.name).bare)
+ self.name.bare)
now = datetime.now()
dff = now - self.last_remote_message
if hide_status_change > -1 and dff.total_seconds() > hide_status_change: