mirror of https://github.com/DJ2LS/FreeDATA.git
increase CQ timeouts from 6 to 10s
parent
546732b64a
commit
68ec4d13ba
|
@ -18,7 +18,7 @@ async function handleCQCall() {
|
|||
// Wait for 6 seconds (cooldown period)
|
||||
setTimeout(() => {
|
||||
isCQButtonDisabled.value = false;
|
||||
}, 6000);
|
||||
}, 10000);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ async function handleSendCQ() {
|
|||
// Wait for 6 seconds (cooldown period)
|
||||
setTimeout(() => {
|
||||
isCQButtonDisabled.value = false;
|
||||
}, 6000);
|
||||
}, 10000);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@ async function handleSendCQ() {
|
|||
// Wait for 6 seconds (cooldown period)
|
||||
setTimeout(() => {
|
||||
isCQButtonDisabled.value = false;
|
||||
}, 6000);
|
||||
}, 10000);
|
||||
}
|
||||
|
||||
// Listen for the stationSelected event and update dxcallPing
|
||||
|
|
Loading…
Reference in New Issue