irc default now uses ssl

This commit is contained in:
fourtf 2019-09-15 11:36:59 +02:00
parent 2a56cef848
commit 67ffb0e34b

View file

@ -14,8 +14,8 @@ enum class IrcAuthType { Anonymous, Custom, Pass };
struct IrcServerData {
QString host;
int port = 6667;
bool ssl = false;
int port = 6697;
bool ssl = true;
QString user;
QString nick;