feat: ignore proxy

This commit is contained in:
Shusui MOYATANI
2023-08-11 10:47:32 +09:00
parent f02779dc62
commit c1f8632d93

View File

@@ -99,7 +99,8 @@ const SearchColumn: Component<SearchColumnDisplayProps> = (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);
},