From 64e8c9311dcfa4f3566d4285a4b053ed489950c6 Mon Sep 17 00:00:00 2001 From: Dpeta Date: Tue, 20 Apr 2021 00:05:50 +0200 Subject: [PATCH] Changed order of COLOR and PESTERCHUM:BEGIN (test) --- irc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc.py b/irc.py index aa91372..621e484 100644 --- a/irc.py +++ b/irc.py @@ -162,9 +162,9 @@ class PesterIRC(QtCore.QThread): def startConvo(self, handle, initiated): h = str(handle) try: + helpers.msg(self.cli, h, "COLOR >%s" % (self.mainwindow.profile().colorcmd())) if initiated: helpers.msg(self.cli, h, "PESTERCHUM:BEGIN") - helpers.msg(self.cli, h, "COLOR >%s" % (self.mainwindow.profile().colorcmd())) except socket.error: self.setConnectionBroken() @QtCore.pyqtSlot(QString)