Fix cache build
This commit is contained in:
parent
8d33616a5f
commit
aef573d37c
1 changed files with 1 additions and 1 deletions
|
@ -499,7 +499,7 @@ export default class SimpleMetaTaggers {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
OsmObject.DownloadReferencingWays(id).then((referencingWays) => {
|
OsmObject.DownloadReferencingWays(id).then((referencingWays) => {
|
||||||
const currentTagsSource = state.allElements.getEventSourceById(id)
|
const currentTagsSource = state.allElements?.getEventSourceById(id) ?? []
|
||||||
const wayIds = referencingWays.map((w) => "way/" + w.id)
|
const wayIds = referencingWays.map((w) => "way/" + w.id)
|
||||||
wayIds.sort()
|
wayIds.sort()
|
||||||
const wayIdsStr = wayIds.join(";")
|
const wayIdsStr = wayIds.join(";")
|
||||||
|
|
Loading…
Reference in a new issue