fix: logic for books that haven't been started

This commit is contained in:
Cory Dransfeldt 2023-11-01 18:58:13 -07:00
parent b0520daf9a
commit c2a0b08aa9

View file

@ -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].textContent || '0%'
data[i]['percentage'] = percentages[i] ? percentages[i].textContent : '0%'
data[i]['dateAdded'] = dates[i]
? new Date(dates[i].textContent.replace('Started ', '').split('\n')[0])
: new Date()