Upgrade to ircrobots 0.6

fixes #2

...seems to work? hmm
This commit is contained in:
hedy 2022-08-31 13:27:35 +08:00
parent e416a9d79a
commit 719bae9246
Signed by: hedy
GPG Key ID: B51B5A8D1B176372
4 changed files with 8 additions and 11 deletions

View File

@ -1,13 +1,13 @@
NICKNAME = "hedyrelay"
SERVERS = {
"libera": {
# host port ssl
"connection": ("irc.libera.chat", 6697, True),
# host port
"connection": ("irc.libera.chat", 6697),
"chans": ["#hedy-dev"],
"hidechan": True,
},
"tilde": {
"connection": ("irc.tilde.chat", 6697, True),
"connection": ("irc.tilde.chat", 6697),
"chans": ["##hedy-dev"],
"hidechan": True,
},
@ -15,7 +15,6 @@ SERVERS = {
"connection": (
"va.furryplace.eu",
6697,
True,
),
"chans": ["#hedy-dev"],
"hidechan": True,

View File

@ -1,13 +1,13 @@
NICKNAME = "hedyrelay"
SERVERS = {
"libera": {
# host port ssl
"connection": ("irc.libera.chat", 6697, True),
# host port
"connection": ("irc.libera.chat", 6697),
"chans": ["#hedy"],
"hidechan": True,
},
"tilde": {
"connection": ("irc.tilde.chat", 6697, True),
"connection": ("irc.tilde.chat", 6697),
"chans": ["##hedy"],
"hidechan": True,
},
@ -15,7 +15,6 @@ SERVERS = {
"connection": (
"va.furryplace.eu",
6697,
True,
),
"chans": ["#hedy"],
"hidechan": True,

View File

@ -25,7 +25,6 @@ class Server(BaseServer):
params.host,
params.port,
tls=params.tls,
tls_verify=params.tls_verify,
bindhost=params.bindhost,
)
@ -88,7 +87,7 @@ class Server(BaseServer):
await self.bot.add_server(
args[1],
ConnectionParams(
NICKNAME, args[2], args[3], bool(int(args[4]))
NICKNAME, args[2], args[3]
),
)
for c in self.chans_actual:

View File

@ -1 +1 @@
ircrobots
ircrobots~=0.6