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]
if (updatedItem.readingProgressBottomPercent === 100) {
// mark item as read
const readingProgress = updatedItem.readingProgressBottomPercent
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)
}