From c1f8632d93c622bf8890d9ff357e54954ab73c03 Mon Sep 17 00:00:00 2001 From: Shusui MOYATANI Date: Fri, 11 Aug 2023 10:47:32 +0900 Subject: [PATCH] feat: ignore proxy --- src/components/column/SearchColumn.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/column/SearchColumn.tsx b/src/components/column/SearchColumn.tsx index 0424a13..2f3b503 100644 --- a/src/components/column/SearchColumn.tsx +++ b/src/components/column/SearchColumn.tsx @@ -99,7 +99,8 @@ const SearchColumn: Component = (props) => { }, ], clientEventFilter: (event) => { - if (event.tags.findIndex(([tagName]) => tagName === 'mostr') >= 0) return false; + if (event.tags.findIndex(([tagName]) => tagName === 'mostr' || tagName === 'proxy') >= 0) + return false; if (props.column.contentFilter == null) return true; return applyContentFilter(props.column.contentFilter)(event.content); },