From af6497fc6ad1d538510b4824c35b469beadaba14 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Fri, 15 Sep 2023 14:12:31 -0500 Subject: Don't cache the server files!!! Signed-off-by: Matt Strapp --- app/src/lib/ts/crc32.worker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/src/lib') diff --git a/app/src/lib/ts/crc32.worker.ts b/app/src/lib/ts/crc32.worker.ts index 0d04c7c..2edcc4f 100644 --- a/app/src/lib/ts/crc32.worker.ts +++ b/app/src/lib/ts/crc32.worker.ts @@ -3,6 +3,6 @@ import crc32 from 'crc/crc32'; onmessage = async (message: MessageEvent) => { const file = message.data; const buffer = await file.arrayBuffer(); - const crc = crc32(buffer, 517762881); + const crc = crc32(buffer); postMessage(crc); }; -- cgit v1.2.3