mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
[CodeFactor] Apply fixes
This commit is contained in:
parent
3349d09654
commit
3c8e77a237
1 changed files with 39 additions and 31 deletions
|
@ -125,13 +125,11 @@ export function eventDispatcher(data) {
|
|||
return;
|
||||
}
|
||||
|
||||
|
||||
// get ptt state as a first test
|
||||
stateStore.ptt_state = data.ptt;
|
||||
|
||||
// catch modem related events
|
||||
if (data["freedata"] == "modem-event") {
|
||||
|
||||
switch (data["event"]) {
|
||||
case "start":
|
||||
displayToast("success", "bi-arrow-left-right", "Modem started", 5000);
|
||||
|
@ -142,11 +140,21 @@ export function eventDispatcher(data) {
|
|||
return;
|
||||
|
||||
case "restart":
|
||||
displayToast("secondary", "bi-bootstrap-reboot", "Modem restarted", 5000);
|
||||
displayToast(
|
||||
"secondary",
|
||||
"bi-bootstrap-reboot",
|
||||
"Modem restarted",
|
||||
5000,
|
||||
);
|
||||
return;
|
||||
|
||||
case "failed":
|
||||
displayToast("danger", "bi-bootstrap-reboot", "Modem startup failed | bad config?", 5000);
|
||||
displayToast(
|
||||
"danger",
|
||||
"bi-bootstrap-reboot",
|
||||
"Modem startup failed | bad config?",
|
||||
5000,
|
||||
);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue