This commit is contained in:
Dpeta 2023-02-12 21:13:02 +01:00
parent da8e6ddbf7
commit 639ece578e
No known key found for this signature in database
GPG key ID: 51227517CEA0030C

4
irc.py
View file

@ -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):