From 6fde19a99190e0f77b5424e4c2bd5af42871920b Mon Sep 17 00:00:00 2001 From: elijah Date: Tue, 5 Nov 2024 01:44:42 +0100 Subject: [PATCH] Fix client info --- assets/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/index.js b/assets/index.js index 1b5110c..798181e 100644 --- a/assets/index.js +++ b/assets/index.js @@ -89,8 +89,8 @@ function updateClientInfo() { } const cleanClientInfo = clientInfo - .replace(/\u00C2/g, "") - .replace(/\u00A0?µs/g, "µs") + .replace(/\u00C2\u00B5s/g, "µs") + .replace(/µs/g, "µs") .replace(/[\u0080-\u00FF]/g, "") .trim();