refactor: drop late filter errors

This commit is contained in:
CJ van den Berg 2026-02-05 17:41:35 +01:00
parent fa58e09a18
commit d3b2577338
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -607,6 +607,9 @@ fn receive_safe(self: *Self, from: tp.pid_ref, m: tp.message) !void {
return; return;
} }
if (try m.match(.{ "filter", "term", "exited", tp.more })) // drop late filter errors
return;
if (try m.match(.{ "line_number_mode", tp.more })) // drop broadcast messages if (try m.match(.{ "line_number_mode", tp.more })) // drop broadcast messages
return; return;