From 175cfe3da3dcc140373fddeda9054a7c07240e60 Mon Sep 17 00:00:00 2001 From: wont-stream Date: Wed, 15 Jan 2025 14:54:13 -0500 Subject: [PATCH] Fix rulesText initialization to allow for undefined state before updating list --- index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 5d7788c..2033c45 100644 --- a/index.ts +++ b/index.ts @@ -37,11 +37,13 @@ const cacheFetch = async (url: string): Promise => { } 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);