From 45563d9a5938ae4fa46da8a2d6c51fc829ebb910 Mon Sep 17 00:00:00 2001 From: Zach Bloomquist Date: Thu, 1 Feb 2024 00:09:45 -0500 Subject: [PATCH] server: remove version from CTCP response --- server/plugins/irc-events/ctcp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/plugins/irc-events/ctcp.ts b/server/plugins/irc-events/ctcp.ts index db5e1806..758d09a7 100644 --- a/server/plugins/irc-events/ctcp.ts +++ b/server/plugins/irc-events/ctcp.ts @@ -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 function (irc, network) {