Include manga chapter fields in update subscription

In case a manga was fully read and a new chapter was found during a library update, the resume button was not correctly updated and pointed to the first chapter.
This regression was introduced with fe2cb682b6
This commit is contained in:
schroda
2024-04-22 22:17:02 +02:00
parent c76fc9c865
commit 6e4596c649
2 changed files with 16 additions and 3 deletions

View File

@@ -442,6 +442,19 @@ export const FULL_UPDATER_STATUS = gql`
chapters {
totalCount
}
firstUnreadChapter {
id
chapterNumber
sourceOrder
}
latestUploadedChapter {
id
uploadDate
}
latestFetchedChapter {
id
fetchedAt
}
}
totalCount
}