From 1104d6b2f199afe255c0bd7cf349d3c0c02cfe72 Mon Sep 17 00:00:00 2001 From: Pedro Date: Sat, 18 Nov 2023 18:01:20 +0100 Subject: [PATCH] Correct ping API call --- gui/src/js/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/src/js/api.js b/gui/src/js/api.js index 94058212..330f6bbd 100644 --- a/gui/src/js/api.js +++ b/gui/src/js/api.js @@ -65,7 +65,7 @@ export function sendModemCQ() { } export function sendModemPing(dxcall) { - return apiPost("/modem/cqcqcq", { dxcall: dxcall }); + return apiPost("/modem/ping", { dxcall: dxcall }); } export function startModem() {