Skip to content

Commit 2c41b48

Browse files
committed
Update error message for wardriving slots to specify TX availability
1 parent ba064bf commit 2c41b48

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

content/wardrive.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ function updateSlotsDisplay(zone) {
998998
slotsDisplay.className = "font-medium text-red-400";
999999

10001000
// Show persistent error in dynamic status bar
1001-
const errorMsg = `No wardriving slots for ${code}. RX only.`;
1001+
const errorMsg = `No TX wardriving slots for ${code}. RX only.`;
10021002
statusMessageState.outsideZoneError = errorMsg;
10031003
setDynamicStatus(errorMsg, STATUS_COLORS.error);
10041004
debugError(`[GEO AUTH] ${errorMsg}`);
@@ -1009,7 +1009,7 @@ function updateSlotsDisplay(zone) {
10091009
debugLog(`[UI] Slots display: Full (0/${slots_max})`);
10101010
} else {
10111011
// Clear any slots-full error if we now have slots available
1012-
if (statusMessageState.outsideZoneError && statusMessageState.outsideZoneError.includes("No wardriving slots")) {
1012+
if (statusMessageState.outsideZoneError && statusMessageState.outsideZoneError.includes("No TX wardriving slots")) {
10131013
statusMessageState.outsideZoneError = null;
10141014
debugLog(`[UI] Cleared slots-full error - slots now available`);
10151015
}

0 commit comments

Comments
 (0)