server: remove version from CTCP response

This commit is contained in:
Zach Bloomquist 2024-02-01 00:09:45 -05:00 committed by GitHub
parent a8be84028c
commit 45563d9a59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,7 +12,7 @@ const ctcpResponses = {
.join(" "),
PING: ({message}: {message: string}) => message.substring(5),
SOURCE: () => pkg.repository.url,
VERSION: () => pkg.name + " " + Helper.getVersion() + " -- " + pkg.homepage,
VERSION: () => pkg.name + " -- " + pkg.homepage,
};
export default <IrcEventHandler>function (irc, network) {