fix: book logic

This commit is contained in:
Cory Dransfeldt 2023-11-01 19:21:37 -07:00
parent c2a0b08aa9
commit 9b3a91fdce

View file

@ -38,7 +38,7 @@ module.exports = async function () {
),
})
data.push({ url: `https://app.thestorygraph.com${urls[i].href}` })
data.push({ percentage: percentages[i].textContent || '0%' })
data.push({ percentage: percentages[i].textContent })
data.push({
dateAdded: dates[i]
? new Date(dates[i].textContent.replace('Started ', '').split('\n')[0])
@ -55,7 +55,7 @@ module.exports = async function () {
'https://books.coryd.dev'
)
data[i]['url'] = `https://app.thestorygraph.com${urls[i].href}`
data[i]['percentage'] = percentages[i] ? percentages[i].textContent : '0%'
data[i]['percentage'] = percentages[i].textContent
data[i]['dateAdded'] = dates[i]
? new Date(dates[i].textContent.replace('Started ', '').split('\n')[0])
: new Date()