From 3a262caa36faf9636f73c73e4a011c0212c86c6a Mon Sep 17 00:00:00 2001 From: James Scott-Brown Date: Fri, 23 May 2025 11:29:47 +0100 Subject: [PATCH] fix infinite loop due to comparing dates incorrectly (fix #55) --- src/lib/Mark.svelte | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/Mark.svelte b/src/lib/Mark.svelte index 2eeeeef6..aef216e6 100644 --- a/src/lib/Mark.svelte +++ b/src/lib/Mark.svelte @@ -174,7 +174,9 @@ ScaledChannelName, ScaleName ][]) { - if (array1[i][channel] !== array2[i][channel]) return true; + if (!isEqual(array1[i][channel], array2[i][channel])) { + return true; + } } } return false; pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy