We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c695b8 commit fdffc5eCopy full SHA for fdffc5e
1 file changed
content/wardrive.js
@@ -1171,11 +1171,8 @@ function startRepeaterTracking(payload, channelIdx) {
1171
debugLog(`Registered LogRxData event handler`);
1172
}
1173
1174
- // Set timeout to stop listening after 7 seconds
1175
- state.repeaterTracking.listenTimeout = setTimeout(() => {
1176
- debugLog(`7-second rx_log listening window closed at ${new Date().toISOString()}`);
1177
- stopRepeaterTracking();
1178
- }, RX_LOG_LISTEN_WINDOW_MS);
+ // Note: The 7-second timeout to stop listening is managed by the caller (sendPing function)
+ // This allows the caller to both stop tracking AND retrieve results at the same time
1179
1180
1181
/**
0 commit comments