From 50e3ac030f90f321010643c224ecf1c53ea82028 Mon Sep 17 00:00:00 2001 From: Rebecca Kelly Date: Mon, 12 Feb 2024 17:39:48 -0500 Subject: [PATCH] fix: multiline_max_bytes was not exported --- lib/irc/handler.ex | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/irc/handler.ex b/lib/irc/handler.ex index 87fec72..a917e95 100644 --- a/lib/irc/handler.ex +++ b/lib/irc/handler.ex @@ -33,6 +33,7 @@ defmodule M51.IrcConn.Handler do # 8kB should be a reasonable limit to remain under the allowed 65kB even # with large signatures and many escapes. @multiline_max_bytes 8192 + def multiline_max_bytes, do: @multiline_max_bytes # set of capabilities that we will show in CAP LS and accept with ACK; # along with their value (shown in CAP LS 302)