Skip to content

Commit 0598b37

Browse files
committed
1 parent 7a1ce5b commit 0598b37

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

monitor.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,8 @@ connectable_present_devices () {
281281
do scan_result=$(hcitool rssi "$known_addr" 2>&1); \
282282
scan_result=${scan_result//[^0-9]/}; \
283283
scan_result=${scan_result:-99}; \
284-
[[ "$scan_result" == "0" ]] && scan_result=99; \
284+
# https://github.com/andrewjfreyer/monitor/pull/362
285+
# [[ "$scan_result" == "0" ]] && scan_result=99; \
285286
counter=$((counter+1)); \
286287
avg_total=$((avg_total + scan_result )); \
287288
sleep 0.5; \

0 commit comments

Comments
 (0)