From 168b20d3b42088aafa30e73dd57e8590ad8d5fbd Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Wed, 15 Jul 2026 12:06:37 -0400 Subject: [PATCH] ipn/ipnlocal: remove android from goosGetsLegacyNetmapNotify The android client was converted in https://github.com/tailscale/tailscale-android/pull/797 Updates #12542 Change-Id: Ibb2cc6fbafdad93ae44e1a60e5cc5de8183f9b97 Signed-off-by: Brad Fitzpatrick --- ipn/ipnlocal/bus.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ipn/ipnlocal/bus.go b/ipn/ipnlocal/bus.go index 0672e0bd3..b6132d966 100644 --- a/ipn/ipnlocal/bus.go +++ b/ipn/ipnlocal/bus.go @@ -26,8 +26,7 @@ import ( // other geese where this is false. const goosGetsLegacyNetmapNotify = runtime.GOOS == "windows" || runtime.GOOS == "darwin" || - runtime.GOOS == "ios" || - runtime.GOOS == "android" + runtime.GOOS == "ios" type rateLimitingBusSender struct { fn func(*ipn.Notify) (keepGoing bool)