Switch example IRC port to 6697

6667 doesn't work since SASL was introduced.

Change-Id: I3758ad5e8059e51b493066a32d8ac4e6b65e2a0e
This commit is contained in:
Adam Spiers 2019-04-26 18:15:25 +01:00
parent 4b30f5224e
commit f07cbb0bee
2 changed files with 2 additions and 2 deletions

View File

@ -172,7 +172,7 @@ Edit config.json contents, for example::
{ {
"irc_nick": "ptgbot", "irc_nick": "ptgbot",
"irc_server": "irc.freenode.net", "irc_server": "irc.freenode.net",
"irc_port": 6667, "irc_port": 6697,
"irc_channel": "#testptg", "irc_channel": "#testptg",
"db_filename": "html/ptg.json", "db_filename": "html/ptg.json",
} }

View File

@ -2,7 +2,7 @@
"irc_nick": "NICK", "irc_nick": "NICK",
"irc_pass": "", "irc_pass": "",
"irc_server": "irc.freenode.net", "irc_server": "irc.freenode.net",
"irc_port": 6667, "irc_port": 6697,
"irc_channel": "#CHANNEL", "irc_channel": "#CHANNEL",
"db_filename": "html/ptg.json" "db_filename": "html/ptg.json"
} }