fix: book logic
This commit is contained in:
parent
c2a0b08aa9
commit
9b3a91fdce
1 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ module.exports = async function () {
|
||||||
),
|
),
|
||||||
})
|
})
|
||||||
data.push({ url: `https://app.thestorygraph.com${urls[i].href}` })
|
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({
|
data.push({
|
||||||
dateAdded: dates[i]
|
dateAdded: dates[i]
|
||||||
? new Date(dates[i].textContent.replace('Started ', '').split('\n')[0])
|
? new Date(dates[i].textContent.replace('Started ', '').split('\n')[0])
|
||||||
|
@ -55,7 +55,7 @@ module.exports = async function () {
|
||||||
'https://books.coryd.dev'
|
'https://books.coryd.dev'
|
||||||
)
|
)
|
||||||
data[i]['url'] = `https://app.thestorygraph.com${urls[i].href}`
|
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]
|
data[i]['dateAdded'] = dates[i]
|
||||||
? new Date(dates[i].textContent.replace('Started ', '').split('\n')[0])
|
? new Date(dates[i].textContent.replace('Started ', '').split('\n')[0])
|
||||||
: new Date()
|
: new Date()
|
||||||
|
|
Reference in a new issue