From 79c1f442ddb4cb37d21f8e1ae71de4c12f8a670a Mon Sep 17 00:00:00 2001 From: Mattk70 Date: Fri, 18 Oct 2024 13:57:48 +0100 Subject: [PATCH] turned off debug mode --- js/worker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/worker.js b/js/worker.js index fc05e7e9..eb99a65a 100644 --- a/js/worker.js +++ b/js/worker.js @@ -16,7 +16,7 @@ import { sqlite3 } from './database.js'; import {trackEvent} from './tracking.js'; import {extractWaveMetadata} from './metadata.js'; -const DEBUG = true; +const DEBUG = false; // Function to join Buffers and not use Buffer.concat() which leads to detached ArrayBuffers function joinBuffers(buffer1, buffer2) {