From 9b3a91fdce1d97c6ea2ff16e2c23c5a5c31de7bf Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 1 Nov 2023 19:21:37 -0700 Subject: [PATCH] fix: book logic --- src/_data/books.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/_data/books.js b/src/_data/books.js index bcb0c120..68dd1832 100644 --- a/src/_data/books.js +++ b/src/_data/books.js @@ -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()