mirror of
https://github.com/comatory/fb2iCal
synced 2025-01-27 15:49:17 +01:00
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…
x
Reference in New Issue
Block a user