Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion way.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ func GetCurrentWay(currentWay CurrentWay, nextWays []NextWayResult, offline Offl

// check the expected next ways
for _, nextWay := range nextWays {
onWay, err := OnWay(nextWay.Way, pos, false)
onWay, err := OnWay(nextWay.Way, pos, true)
logde(errors.Wrap(err, "could not check if on next way"))
if onWay.OnWay {
start, end := GetWayStartEnd(nextWay.Way, onWay.IsForward)
Expand Down
Loading