1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 22:13:53 +01:00
This commit is contained in:
NoobishSVK
2024-08-01 20:12:24 +02:00
parent 2e719448b2
commit 8df2eab272
13 changed files with 54 additions and 59 deletions

View File

@@ -1,5 +1,6 @@
const fetch = require('node-fetch');
const { serverConfig } = require('./server_config')
const { serverConfig } = require('./server_config');
const consoleCmd = require('./console');
let cachedData = {};
@@ -39,7 +40,6 @@ function fetchTx(freq, piCode, rdsPs) {
return processData(data, piCode, rdsPs);
})
.catch(error => {
console.error("Error fetching data:", error);
});
}