From 4d8862752e94a450b3ef961684f220c2403f63b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Granade?= Date: Thu, 24 May 2018 13:42:55 +0200 Subject: [PATCH] Tentative fix to https://github.com/Project-OSRM/osrm-backend/issues/5084 not 100% sure it's correct but at least it doesn't crash anymore :) --- profiles/lib/way_handlers.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/lib/way_handlers.lua b/profiles/lib/way_handlers.lua index ef9fa88e8..a2c204ece 100644 --- a/profiles/lib/way_handlers.lua +++ b/profiles/lib/way_handlers.lua @@ -84,7 +84,7 @@ function WayHandlers.startpoint(profile,way,result,data) -- highway=service and access tags check local is_service = data.highway == "service" if is_service then - if profile.service_access_tag_blacklist[data.forward_access] then + if profile.access_tag_blacklist[data.forward_access] then result.is_startpoint = false end end