fix problem in LDJSON parser when address object is not available
This commit is contained in:
parent
3b876631b9
commit
7234d442e3
|
@ -9,13 +9,17 @@ const parseEventData = (eventData) => {
|
|||
const { location } = eventData || {}
|
||||
const { address } = location || {}
|
||||
|
||||
const locationStr = location ? [
|
||||
location.name || '',
|
||||
const locationName = location ? location.name : ''
|
||||
const addressStr = address ? [
|
||||
address.streetAddress || '',
|
||||
address.addressLocality || '',
|
||||
address.postalCode || '',
|
||||
address.addressCountry || '',
|
||||
].join(' ') : ''
|
||||
const locationStr = [
|
||||
locationName,
|
||||
addressStr,
|
||||
].join(' ')
|
||||
const cleanedLocationStr = locationStr.replace(/\r?\n|\r/g, ' ')
|
||||
const title = eventData.name || ''
|
||||
const url = eventData.url || ''
|
||||
|
|
Loading…
Reference in New Issue