another go at fixing intermittent disconnections
parent
2f2d365113
commit
6ee5c6dae7
4
bot.py
4
bot.py
|
@ -13,7 +13,7 @@ import irc
|
|||
home = os.getcwd()
|
||||
|
||||
def decode(bytes):
|
||||
if not bytes or type(bytes) == str:
|
||||
if type(bytes) == str:
|
||||
return bytes
|
||||
try:
|
||||
text = bytes.decode('utf-8')
|
||||
|
@ -205,7 +205,7 @@ class Phenny(irc.Bot):
|
|||
|
||||
def dispatch(self, origin, args):
|
||||
bytes, event, args = args[0], args[1], args[2:]
|
||||
text = str(bytes)
|
||||
text = decode(bytes)
|
||||
event = decode(event)
|
||||
|
||||
if origin.nick in self.config.ignore:
|
||||
|
|
Loading…
Reference in New Issue