From 0551867bfdb8dfa7dbd5964a15a1a950510e2c71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Mon, 8 Apr 2019 11:15:17 +0100 Subject: PrivateInfoWin: remove safeJID call MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- poezio/windows/info_wins.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'poezio/windows') diff --git a/poezio/windows/info_wins.py b/poezio/windows/info_wins.py index 7cc39a36..f3237a08 100644 --- a/poezio/windows/info_wins.py +++ b/poezio/windows/info_wins.py @@ -6,6 +6,7 @@ info buffer in normal tabs import logging log = logging.getLogger(__name__) +from slixmpp import JID from poezio.common import safeJID from poezio.config import config @@ -91,8 +92,7 @@ class PrivateInfoWin(InfoWin): self.addstr(plugin(jid), to_curses_attr(get_theme().COLOR_INFORMATION_BAR)) - def write_room_name(self, name): - jid = safeJID(name) + def write_room_name(self, jid: JID): room_name, nick = jid.bare, jid.resource theme = get_theme() self.addstr(nick, to_curses_attr(theme.COLOR_PRIVATE_NAME)) -- cgit v1.2.3