diff --git a/modules/validations/outdated_tags.js b/modules/validations/outdated_tags.js index 0cc130e03..f4be2e629 100644 --- a/modules/validations/outdated_tags.js +++ b/modules/validations/outdated_tags.js @@ -250,8 +250,8 @@ export function validationOutdatedTags() { // We are keeping the match at this point subtype = 'noncanonical_brand'; - // Preserve some tags values that we don't want NSI to overwrite. - const keepTags = ['takeaway', 'building'] + // Preserve some tag values that we don't want NSI to overwrite. + const keepTags = ['building', 'flag:name', 'takeaway'] .reduce((acc, k) => { if (newTags[k]) acc[k] = newTags[k]; return acc;