From 4ece21d5137c5d5c051480a99c8a9c4b1ac41f83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Farka=C5=A1?= Date: Sun, 1 Jun 2025 17:48:00 +0200 Subject: [PATCH] hotfix test for freq handling --- web/js/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/api.js b/web/js/api.js index ac64042..5e64c1a 100644 --- a/web/js/api.js +++ b/web/js/api.js @@ -41,7 +41,7 @@ function tuneDown() { function tuneTo(freq) { previousFreq = getCurrentFreq(); - socket.send("T" + ((parseFloat(freq)) * 1000).toFixed(3)); + socket.send("T" + ((parseFloat(freq)) * 1000).toFixed(0)); } function resetRDS() {