From 28ee355c56c68a446ecfdc755c67311349bf6a3c Mon Sep 17 00:00:00 2001 From: Andrea Gottardo Date: Thu, 6 Jul 2023 16:19:15 -0700 Subject: [PATCH] version: fix tvOS network extension bundle identifier (#8545) Fixes #8544 and updates #8282. Signed-off-by: Andrea Gottardo --- version/prop.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/prop.go b/version/prop.go index 386fcd64e..daccab29e 100644 --- a/version/prop.go +++ b/version/prop.go @@ -88,7 +88,7 @@ func IsAppleTV() bool { return false } return isAppleTV.Get(func() bool { - return strings.EqualFold(os.Getenv("XPC_SERVICE_NAME"), "io.tailscale.ipn.tvos.network-extension") + return strings.EqualFold(os.Getenv("XPC_SERVICE_NAME"), "io.tailscale.ipn.ios.network-extension-tvos") }) }