Don't treat source_ref subtags as descriptive tags

This commit is contained in:
Quincy Morgan
2019-11-18 15:49:32 -05:00
parent b2611a941c
commit 1f5cce9bdd
+1 -1
View File
@@ -2,9 +2,9 @@ export function osmIsInterestingTag(key) {
return key !== 'attribution' &&
key !== 'created_by' &&
key !== 'source' &&
key !== 'source_ref' &&
key !== 'odbl' &&
key.indexOf('source:') !== 0 &&
key.indexOf('source_ref') !== 0 && // purposely exclude colon
key.indexOf('tiger:') !== 0;
}