From e538bd51c3bc1a416135fbe56329f02444585104 Mon Sep 17 00:00:00 2001 From: spencerkee <spencerkee@users.noreply.github.com> Date: Mon, 24 Mar 2025 20:05:35 +0000 Subject: [PATCH] Fix array equality stuff --- app.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app.js b/app.js index 0694787..1a09494 100644 --- a/app.js +++ b/app.js @@ -232,7 +232,8 @@ recordingButtons.forEach((button, index) => { let ourStartStop = codeDataButtonIndexes[index]; // [14, 19] let matchingStartStopIndexes = []; for (let i = 0; i < codeDataButtonIndexes.length; i++) { - if (codeDataButtonIndexes[i] === ourStartStop) { + if (JSON.stringify(codeDataButtonIndexes[i]) === JSON.stringify(ourStartStop)) { + // if (codeDataButtonIndexes[i] === ourStartStop) { matchingStartStopIndexes.push(i); } } @@ -282,7 +283,6 @@ recordingButtons.forEach((button, index) => { accumulator += filteredAnnotatedVals[i][2]; } - // debugger; // let stringBestValues = bestValues.map(a => a[0]); // TODO bestValues can contain duplicates, removing here bestValues = bestValues.filter((value, index, self) => self.indexOf(value) === index); @@ -299,7 +299,6 @@ recordingButtons.forEach((button, index) => { // // TODO Only add unique ones. // codeDataButtonSubstrings[0].push(...bestValues.map(codeData => codeData[0])); // let junk = analyze(codeDataButtonSubstrings[0]); -// debugger; // } else { -- GitLab