Browse Source

version: fix tvOS network extension bundle identifier (#8545)

Fixes #8544 and updates #8282.

Signed-off-by: Andrea Gottardo <[email protected]>
Andrea Gottardo 2 years ago
parent
commit
28ee355c56
1 changed files with 1 additions and 1 deletions
  1. 1 1
      version/prop.go

+ 1 - 1
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")
 	})
 }