disable online map by default for now

Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
Kristoffer Dalby 2023-07-17 11:21:31 +02:00 committed by Kristoffer Dalby
parent 78268d78a0
commit a1a3ff4ba8

View File

@ -535,10 +535,10 @@ func (m *Mapper) baseMapResponse(machine *types.Machine) tailcfg.MapResponse {
ControlTime: &now, ControlTime: &now,
} }
online, err := m.db.ListOnlineMachines(machine) // online, err := m.db.ListOnlineMachines(machine)
if err == nil { // if err == nil {
resp.OnlineChange = online // resp.OnlineChange = online
} // }
return resp return resp
} }