We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f56d0c commit e3c76ebCopy full SHA for e3c76eb
android/src/main/java/com/tailscale/ipn/ui/model/TailCfg.kt
@@ -105,7 +105,7 @@ class Tailcfg {
105
106
// isExitNode reproduces the Go logic in local.go peerStatusFromNode
107
val isExitNode: Boolean =
108
- AllowedIPs?.contains("0.0.0.0/0") ?: false && AllowedIPs?.contains("::/0") ?: false
+ (AllowedIPs?.contains("0.0.0.0/0") ?: false) && (AllowedIPs?.contains("::/0") ?: false)
109
110
val isMullvadNode: Boolean
111
get() = Name.endsWith(".mullvad.ts.net.")
0 commit comments