From 724c45770c6736b436edcef08388e58a5c98cc99 Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Sun, 14 Feb 2010 04:30:04 +0000 Subject: fixed #1156 --- src/gui.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/gui.py b/src/gui.py index 27d14657..d8d95487 100644 --- a/src/gui.py +++ b/src/gui.py @@ -357,15 +357,14 @@ class Gui(object): self.information(_("message received for a non-existing room: %s") % (room_from)) return body = stanza.getBody() - if not body: - body = stanza.getSubject() - info = room.add_info(_("%(nick)s changed the subject to: %(subject)s") % {'nick':nick_from, 'subject':stanza.getSubject()}) + subject = stanza.getSubject() + if subject: + info = room.add_info(_("%(nick)s changed the subject to: %(subject)s") % {'nick':nick_from, 'subject':subject}) self.window.text_win.add_line(room, (datetime.now(), info)) - room.topic = stanza.getSubject().encode('utf-8').replace('\n', '|') + room.topic = subject.encode('utf-8').replace('\n', '|') if room == self.current_room(): self.window.topic_win.refresh(room.topic) self.window.text_win.refresh(room.name) - curses.doupdate() else: color = room.add_message(nick_from, body) self.window.text_win.add_line(room, (datetime.now(), nick_from.encode('utf-8'), body.encode('utf-8'), color)) -- cgit v1.2.3