Skip to content

Commit

Permalink
Also include unknown routes.
Browse files Browse the repository at this point in the history
  • Loading branch information
saivert committed Sep 12, 2024
1 parent 16b97bf commit f79e41e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/pwroutefiltermodel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ mod imp {
.skip(position as usize)
.map_while(Result::ok)
.enumerate() {
if routeobject.direction() == widget.direction() && routeobject.availability() == ParamAvailability::Yes {
if routeobject.direction() == widget.direction() && routeobject.availability() == ParamAvailability::Yes || routeobject.availability() == ParamAvailability::Unknown {
hashset.insert(a as u32);
}
}
Expand Down

0 comments on commit f79e41e

Please sign in to comment.