Skip to content

Commit 71bb15a

Browse files
committed
change default name to hash
1 parent 85f21e8 commit 71bb15a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A simple Python/FastAPI server for syncing reading progress across KOReader devi
99

1010
Don't want to deploy your own?
1111

12-
Just [create an account](https://www.null-space.xyz/reader) then set your KOReader or Readest app to use `https://api.null-space.xyz/reader` for progress sync.
12+
Just [create an account](https://www.null-space.xyz/reader) then set your KOReader or Readest app to use `https://api.null-space.xyz` for progress sync.
1313

1414
> [!WARNING]
1515
> **Kindle Sync Timeout Issue**

svg_card.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def render_progress_card(books: list["BookSummary"]) -> str:
4040
else:
4141
for i, book in enumerate(books):
4242
y_offset = header_height + (i * book_height) + 20
43-
title = html.escape(book.label or book.filename or "Untitled")
43+
title = html.escape(book.label or book.filename or book.canonical_hash)
4444
if len(title) > 40:
4545
title = title[:37] + "..."
4646

0 commit comments

Comments
 (0)