From 2e1f38a98b4604c0e99a9c77ac00221473fe64b3 Mon Sep 17 00:00:00 2001 From: JB Date: Sat, 29 Nov 2025 12:16:09 -0800 Subject: [PATCH] fix: Update redirect step in api_calibre_opds_import to point to 'book' instead of 'chapters' --- abogen/web/routes/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abogen/web/routes/api.py b/abogen/web/routes/api.py index a954030..4057a3e 100644 --- a/abogen/web/routes/api.py +++ b/abogen/web/routes/api.py @@ -304,7 +304,7 @@ def api_calibre_opds_import() -> ResponseReturnValue: "success": True, "status": "imported", "pending_id": result.pending.id, - "redirect_url": url_for("main.wizard_step", step="chapters", pending_id=result.pending.id) + "redirect_url": url_for("main.wizard_step", step="book", pending_id=result.pending.id) }) except Exception as e: