Fix away
This commit is contained in:
parent
da8e6ddbf7
commit
639ece578e
1 changed files with 2 additions and 2 deletions
4
irc.py
4
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):
|
||||
|
|
Loading…
Reference in a new issue