From f5e7c4cd85dd9d04f209809c3697f9e186dac1b5 Mon Sep 17 00:00:00 2001 From: Mathias Malmqvist Date: Sat, 13 Sep 2025 15:22:42 +0200 Subject: [PATCH] Comment out the code that should never run anyway --- core.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core.js b/core.js index 6d13166..3712ae3 100644 --- a/core.js +++ b/core.js @@ -1380,9 +1380,9 @@ async function write_finetune_data(data) { // const deepEqual = (a, b) => JSON.stringify(a) === JSON.stringify(b); // if (deepEqual(data, finetune.last_written_data)) { - if (data == last_written_finetune_data) { //mm this will never be true, but fixing it (per above) breaks Edge writes - return; - } + // if (data == finetune.last_written_data) { //mm this will never be true, but fixing it (per above) breaks Edge writes + // return; + // } finetune.last_written_data = data const pkg = data.reduce((acc, val) => acc.concat([val & 0xff, val >> 8]), [12, 1]);