From 382c30718969e46a482220d290942f3d8d77d8d8 Mon Sep 17 00:00:00 2001 From: SethBurkart123 Date: Thu, 31 Aug 2023 06:28:12 +1000 Subject: [PATCH] fix error --- src/SEQTA.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SEQTA.js b/src/SEQTA.js index 7027adde..74c190eb 100644 --- a/src/SEQTA.js +++ b/src/SEQTA.js @@ -2221,8 +2221,8 @@ function hexToRGB(hex) { b = parseInt(hex.slice(5, 7), 16); return { r: r, g: g, b: b }; - } catch(e) { - console.error(e); + } catch { + // do nothing becuase this functoin is a bit broken right now (feel free to fix it!) } }