changed the "is connected" time to 3 minutes

48-fix-client-status-indicator
James Batt 4 years ago
parent 89f265e7c9
commit c29a80402a

@ -122,5 +122,5 @@ func isConnected(lastHandshake *time.Time) bool {
if lastHandshake == nil {
return false
}
return lastHandshake.After(time.Now().Add(-1 * time.Minute))
return lastHandshake.After(time.Now().Add(-3 * time.Minute))
}

Loading…
Cancel
Save