1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 22:13:53 +01:00

bugfixes / PCM removal

This commit is contained in:
NoobishSVK
2024-07-15 22:19:20 +02:00
parent 8b2f489fbe
commit 03fb77c8c4
13 changed files with 141 additions and 311 deletions

View File

@@ -8,7 +8,7 @@ var pjson = require('../package.json');
let timeoutID = null;
function send(request) {
const url = "https://list.fmdx.pl/api/";
const url = "https://servers.fmdx.org/api/";
const options = {
method: 'POST',
@@ -53,7 +53,7 @@ function sendKeepalive() {
const request = {
token: serverConfig.identification.token,
status: (serverConfig.lockToAdmin ? 2 : 1)
status: ((serverConfig.lockToAdmin || !serverConfig.publicTuner) ? 2 : 1)
};
send(request);