Fix: avoid non-doaminlist into trie

This commit is contained in:
SukkaW
2024-09-18 13:57:00 +08:00
parent c5513ef363
commit a004ffb960
4 changed files with 15 additions and 6 deletions

View File

@@ -16,6 +16,7 @@ export const processLine = (line: string): string | null => {
|| line_0 === '\r'
|| line_0 === '\n'
|| line_0 === '!'
|| (line_0 === '/' && trimmed[1] === '/')
) {
return null;
}