send page_update event if mark as unread

This commit is contained in:
Hongbo Wu
2024-08-29 12:48:55 +08:00
parent 5b7d1bba93
commit 43fb698bdc

View File

@ -1039,8 +1039,9 @@ export const updateLibraryItemReadingProgress = async (
} }
const updatedItem = result[0][0] const updatedItem = result[0][0]
if (updatedItem.readingProgressBottomPercent === 100) { const readingProgress = updatedItem.readingProgressBottomPercent
// mark item as read if (readingProgress === 0 || readingProgress === 100) {
// only send PAGE_UPDATED event if users mark item as read or unread
await pubsub.entityUpdated<ItemEvent>(EntityType.ITEM, updatedItem, userId) await pubsub.entityUpdated<ItemEvent>(EntityType.ITEM, updatedItem, userId)
} }