fix: Rename redirect key to redirect_url in api_calibre_opds_import response

This commit is contained in:
JB
2025-11-29 12:09:06 -08:00
parent cc641cec78
commit 3d073e8e55
+1 -1
View File
@@ -304,7 +304,7 @@ def api_calibre_opds_import() -> ResponseReturnValue:
"success": True,
"status": "imported",
"pending_id": result.pending.id,
"redirect": url_for("main.wizard_step", step="chapters", pending_id=result.pending.id)
"redirect_url": url_for("main.wizard_step", step="chapters", pending_id=result.pending.id)
})
except Exception as e: