forked from MapComplete/MapComplete
Fix: correct default access assumption
This commit is contained in:
parent
59e76b9c6f
commit
ea06152473
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ export default class VeloparkLoader {
|
|||
)
|
||||
properties.maxstay = duration + " days"
|
||||
}
|
||||
properties.access = g.publicAccess ? "yes" : "no"
|
||||
properties.access = g.publicAccess ?? "yes" ? "yes" : "no"
|
||||
const prefix = "http://schema.org/"
|
||||
if (g.openingHoursSpecification) {
|
||||
const oh = OH.simplify(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue