Skip to content

Empty quit message raises IndexError #210

Description

@OrpheusGr

When a quit message is empty an IndexError is raised as the line is processed.

Traceback (most recent call last):                        
File "/usr/lib/python3.9/threading.py", line 954, in _bootstrap_inner                                             
self.run()                                            
File "/usr/lib/python3.9/threading.py", line 892, in run                                                          
self._target(*self._args, **self._kwargs)             
File "/home/orfeas/DiscIRC-Relay/classcon.py", line 48, in startloop                                            
reactor.process_once(0.2)                             
File "/home/orfeas/.local/lib/python3.9/site-packages/irc/client.py", line 827, in process_once               
self.process_data(in_)                                
File "/home/orfeas/.local/lib/python3.9/site-packages/irc/client.py", line 792, in process_data                   
conn.process_data()                                   
File "/home/orfeas/.local/lib/python3.9/site-packages/irc/client.py", line 268, in process_data                   
self._process_line(line)                              
File "/home/orfeas/.local/lib/python3.9/site-packages/irc/client.py", line 299, in _process_line
handler(arguments, command, source, tags)
File "/home/orfeas/.local/lib/python3.9/site-packages/irc/client.py", line 348, in _handle_other
arguments = [arguments[0]]
IndexError: list index out of range

What solved the issue for me is a try-except block in def _handle_other line 348

try:
    arguments = [arguments[0]]
except IndexError:
    arguments = [""]

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions