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
Something changed on the QT side, and now the client cannot connect to any relay:
$[130] 19:42 ~ > qweechat Traceback (most recent call last): File "/usr/lib/python2.7/site-packages/qweechat/qweechat.py", line 276, in connect_weechat int(self.connection_dialog.fields['lines'].text())) File "/usr/lib/python2.7/site-packages/qweechat/network.py", line 143, in connect_weechat self.statusChanged.emit(self.status_connecting, None) TypeError: Network.statusChanged[str, str].emit(): argument 2 has unexpected type 'NoneType' Traceback (most recent call last): File "/usr/lib/python2.7/site-packages/qweechat/network.py", line 72, in _socket_connected self.statusChanged.emit(self.status_connected, None) TypeError: Network.statusChanged[str, str].emit(): argument 2 has unexpected type 'NoneType'
Looks like QT now forces the use of a string
The text was updated successfully, but these errors were encountered:
The issue is also present at line 112 and 143 of network.py Replacing None by "" seems to fix the issue
None
""
Sorry, something went wrong.
flashcode
No branches or pull requests
Something changed on the QT side, and now the client cannot connect to any relay:
Looks like QT now forces the use of a string
The text was updated successfully, but these errors were encountered: