From 639ece578e847f516c3b07ec266c79a8aec894fc Mon Sep 17 00:00:00 2001 From: Dpeta <69427753+Dpeta@users.noreply.github.com> Date: Sun, 12 Feb 2023 21:13:02 +0100 Subject: [PATCH] Fix away --- irc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/irc.py b/irc.py index e2195ff..0887832 100644 --- a/irc.py +++ b/irc.py @@ -499,9 +499,9 @@ class PesterIRC(QtCore.QThread): def set_away(self, away=True): """Send AWAY to update away status, slot is called from main thread.""" if away: - self.away("Idle") + self._send_irc.away("Idle") else: - self.away() + self._send_irc.away() @QtCore.pyqtSlot(str, str) def kill_some_quirks(self, channel, handle):