fix: book progress

This commit is contained in:
Cory Dransfeldt 2023-10-30 09:34:44 -07:00
parent 20ee0e1fbd
commit f584719d1f
No known key found for this signature in database

View file

@ -55,6 +55,7 @@ module.exports = async function () {
.map((book) => {
book.type = 'book'
if (!('dateAdded' in book)) book.dateAdded = new Date()
if (!('percentage' in book)) book.percentage = '0%'
return book
})
await asset.save(books, 'json')