Tweak node detection keepalive (#1713)

This commit is contained in:
Tim Wilkinson 2024-11-21 18:21:53 -08:00 committed by GitHub
parent b245852d0b
commit 7218383807
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ function should_nonpair_block(track)
end end
function should_ping(track) function should_ping(track)
if not track.ip or is_user_blocked(track) or track.lastseen < now or track.firstseen == track.lastseen then if not track.ip or is_user_blocked(track) or track.lastseen < now then
return false return false
end end
if track.type == "Tunnel" or track.type == "Wireguard" then if track.type == "Tunnel" or track.type == "Wireguard" then