We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17c3085 commit 0ca3998Copy full SHA for 0ca3998
android/src/main/java/com/tailscale/ipn/ui/util/PeerHelper.kt
@@ -33,6 +33,12 @@ class PeerCategorizer {
33
val userId = peer.User
34
val profile = netmap.userProfile(userId)
35
36
+ // Sharee peers exist for shared-device return-path connectivity, but they
37
+ // should stay hidden from the normal device list.
38
+ if (peer.Hostinfo.ShareeNode == true) {
39
+ continue
40
+ }
41
+
42
// Mullvad nodes should not be shown in the peer list
43
if (peer.isMullvadNode) {
44
continue
0 commit comments