Harden sync#99
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Hardens the KOReader sync pipeline across plugin, server, and web UI to prevent last_open corruption, invalid page-stat ingestion, and edge-case crashes (annotation-only sync payload shape, empty stats, and division-by-zero UI issues).
Changes:
- Plugin now flushes in-memory reading stats to
statistics.sqlite3before reading/syncing, and stops attempting to derivelast_openfrom sidecar metadata. - Server normalizes/validates incoming stats payloads, conditionally merges
last_open, and filters invalid page-stat rows before insertion. - Web UI avoids division-by-zero when computing average per day.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| plugins/koinsight.koplugin/db_reader.lua | Flushes KOReader statistics to DB before reading page stats for sync. |
| plugins/koinsight.koplugin/annotation_reader.lua | Sets last_open to 0 for sidecar-derived metadata since it’s not reliably available. |
| apps/web/src/pages/book-page/book-page.tsx | Prevents avgPerDay from becoming NaN when there are zero reading days. |
| apps/server/src/upload/upload-service.ts | Normalizes stats payload shape, validates last_open, and filters invalid page stat rows before inserting. |
| apps/server/src/books/books-service.ts | Returns 0 for started-reading when no stats exist (avoids Infinity). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
GeorgeSG
reviewed
Mar 1, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix last_open corruption, data loss, and edge case crashes
Problems
Main bugs
Several bugs were causing incorrect or missing data after syncing:
Captured along the way
Solutions