From 5d7933f9988845c3181f670f8171e4fb9fc89912 Mon Sep 17 00:00:00 2001 From: karxi Date: Sun, 13 Nov 2016 01:44:05 -0500 Subject: [PATCH] Another IDLE message fix. --- convo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convo.py b/convo.py index a74c9a5..2b5affd 100644 --- a/convo.py +++ b/convo.py @@ -373,7 +373,7 @@ class PesterText(QtGui.QTextEdit): verb = window.theme["convo/text/idle"] idlemsg = me.idlemsg(systemColor, verb) parent.textArea.append(convertTags(idlemsg)) - window.chatlog.log(parent.title(), idlemsg) + window.chatlog.log(chum.handle, idlemsg) parent.messageSent.emit("PESTERCHUM:IDLE", parent.title()) self.lastmsg = datetime.now() window.chatlog.log(chum.handle, lexmsg)