diff --git a/openlr/helpers.cpp b/openlr/helpers.cpp index ce7928f2b5..e54fd2ea43 100644 --- a/openlr/helpers.cpp +++ b/openlr/helpers.cpp @@ -67,7 +67,9 @@ optional GetFrcScore(Graph::Edge const & e, FunctionalRoadClass functiona if (hwClass == ftypes::HighwayClass::LivingStreet || hwClass == ftypes::HighwayClass::Service) return optional(kMaxScoreForFrc); - return hwClass == ftypes::HighwayClass::Tertiary ? optional(0) : nullopt; + return (hwClass == ftypes::HighwayClass::Tertiary || hwClass == ftypes::HighwayClass::Secondary) + ? optional(0) + : nullopt; case FunctionalRoadClass::FRC5: case FunctionalRoadClass::FRC6: