Fix rulesText initialization to allow for undefined state before updating list
This commit is contained in:
parent
79bc20aa61
commit
175cfe3da3
1 changed files with 3 additions and 1 deletions
4
index.ts
4
index.ts
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue