Add ping toast

This commit is contained in:
Mashintime 2023-12-09 11:34:25 -05:00
parent bdc21d1c53
commit 46eef7a3b5

View file

@ -211,12 +211,21 @@ export function eventDispatcher(data) {
5000,
);
return;
case "QRV":
case "QRV":
//Qrv received
displayToast(
"success",
"bi-person-raised-hand",
"QRV from " + data["dxcallsign"],
5000,
);
return;
case "PING":
//Qrv received
displayToast(
"success",
"bi-person-raised-hand",
"QRV from " + data["dxcallsign"],
"bi-arrow-right-short",
"Ping request from " + data["dxcallsign"],
5000,
);
return;