Fix rulesText initialization to allow for undefined state before updating list

This commit is contained in:
Seth 2025-01-15 14:54:13 -05:00
parent 79bc20aa61
commit 175cfe3da3
No known key found for this signature in database
GPG key ID: 8B7A2C60CDF65CAC

View file

@ -37,11 +37,13 @@ const cacheFetch = async (url: string): Promise<string> => {
}
let rules: string[] = [];
let rulesText: Uint8Array;
let rulesText: Uint8Array | undefined;
const updateList = async () => {
rules = [];
rulesText = undefined;
for (const filter of filterList) {
let list = await cacheFetch(filter);