Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/wardrive.js
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,7 @@ function startRepeaterTracking(payload, channelIdx) {
* @param {number} channelIdx - The channel index where we sent the ping
* @param {number} expectedChannelHash - The channel hash we expect (for message correlation)
*/
function handleRxLogEvent(data, originalPayload, channelIdx, expectedChannelHash) {
async function handleRxLogEvent(data, originalPayload, channelIdx, expectedChannelHash) {
try {
debugLog(`Received rx_log entry: SNR=${data.lastSnr}, RSSI=${data.lastRssi}`);

Expand Down
3 changes: 1 addition & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,7 @@ <h2 id="sessionPingsHeading" class="text-sm font-medium">Session Pings</h2>
</div>
</main>

<!-- Load config before main script -->
<script src="content/config.js"></script>
<!-- Load main script -->
<script type="module" src="content/wardrive.js"></script>
<script type="module">
import { onLoad } from './content/wardrive.js';
Expand Down