We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the instance that your oauth key begins with the character 'h' it will be stripped from the password at IRC initialization and throw a login error.
class IRC(threading.Thread): def __init__(self, nickname: str, password: str, address: str = 'irc.chat.twitch.tv', port: int = 6667): super().__init__() self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) self.address: str = address self.port: int = port self.channels: List[str] = [] self.nickname: str = nickname self.password: str = 'oauth:' + password.lstrip('oauth:') self.active: bool = True self.incoming: Subject = Subject()
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In the instance that your oauth key begins with the character 'h' it will be stripped from the password at IRC initialization and throw a login error.
The text was updated successfully, but these errors were encountered: