Don't add a "crossing" tag to ambiguous crossings when connecting crossing ways via the quick fix (re: #6244)

This commit is contained in:
Quincy Morgan
2019-04-30 11:46:15 -07:00
parent 5eb3416431
commit 07573091ad
+2 -2
View File
@@ -170,8 +170,8 @@ export function validationCrossingWays() {
// if the path is a crossing, match the crossing type
return { highway: 'crossing', crossing: pathFeature.tags.crossing };
}
// default ambiguous crossings to unmarked
return { highway: 'crossing', crossing: 'unmarked' };
// don't add a `crossing` subtag to ambiguous crossings
return { highway: 'crossing' };
}
return {};
}