Merge branch 'develop' into feature/maproulette

This commit is contained in:
Robin van der Linde 2022-07-19 09:38:12 +02:00
commit 330f1f53f3
Signed by untrusted user: Robin-van-der-Linde
GPG key ID: 53956B3252478F0D
72 changed files with 29673 additions and 611 deletions

View file

@ -336,7 +336,7 @@ export class TagUtils {
if (json["or"] !== undefined) {
return new Or(json["or"].map(t => TagUtils.Tag(t, context)));
}
throw "At " + context + ": unrecognized tag"
throw `At ${context}: unrecognized tag: ${JSON.stringify(json)}`
}