From 5c0af196da844d4614fdef0b572b8130d39589de Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Thu, 1 Jan 2026 15:06:53 -0500 Subject: [PATCH] fix (noopSequence).Ephemeral() --- irc/history/database.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc/history/database.go b/irc/history/database.go index 277d2c39..3a72ae48 100644 --- a/irc/history/database.go +++ b/irc/history/database.go @@ -122,5 +122,5 @@ func (n noopSequence) Cutoff() time.Time { } func (n noopSequence) Ephemeral() bool { - return true + return false // we're pretending to be an empty database }