fix: logic for books that haven't been started
This commit is contained in:
parent
b0520daf9a
commit
c2a0b08aa9
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Reference in a new issue