mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
fix(nodes): Correctly filter ignored nodes (#3966)
Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
parent
c21dcddf94
commit
919901e905
1 changed files with 1 additions and 1 deletions
|
|
@ -107,7 +107,7 @@ constructor(
|
|||
)
|
||||
.map { list ->
|
||||
list
|
||||
.filter { filter.showIgnored || !it.isIgnored }
|
||||
.filter { node -> node.isIgnored == filter.showIgnored }
|
||||
.filter { node ->
|
||||
if (filter.excludeInfrastructure) {
|
||||
val role = node.user.role
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue