Debugging QUIT

This commit is contained in:
Firepup Sixfifty 2024-04-30 21:04:28 -05:00
parent c0bd1f4352
commit 0528f07a7d
Signed by: Firepup650
GPG key ID: 7C92E2ABBBFAB9BA
3 changed files with 5 additions and 3 deletions

2
bot.py
View file

@ -286,7 +286,7 @@ class bot(bare.bot):
try:
action = ircmsg.split(" ", 2)[1].strip()
except IndexError:
pass
self.log("Failed to detect message type!", "WARN")
self.tmpHost = ""
if action in handlers.handles:
res, chan = handlers.handles[action](self, ircmsg)

View file

@ -6,7 +6,7 @@ from typing import Optional, Any
import bare, pylast
load_dotenv()
__version__ = "v3.0.8"
__version__ = "v3.0.8-dev"
npbase: str = (
"\[\x0303last\.fm\x03\] [A-Za-z0-9_[\]{}\\|\-^]{1,$MAX} (is listening|last listened) to: \x02.+ - .*\x02( \([0-9]+ plays\)( \[.*\])?)?" # pyright: ignore [reportInvalidStringEscapeSequence]
)

View file

@ -174,7 +174,9 @@ def PART(bot: bare.bot, msg: str) -> tuple[None, None]:
def QUIT(bot: bare.bot, msg: str) -> tuple[None, None]:
if bot.server == "replirc":
if msg.split("!", 1)[0][1:] == "FireMCBot":
quitter = msg.split(" ", 2)[1].strip()
bot.log("Someone quit - " + quitter)
if quitter == "FireMCBot":
bot.send("TOPIC #firemc :FireMC Relay channel (offline)\n")
return None, None