fix: resolve komga api errors

This commit is contained in:
2026-02-27 09:02:11 +01:00
parent 034aa69f8d
commit b9c8b05bc8
3 changed files with 14253 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ export class BookService extends BaseApiService {
if (
error instanceof AppError &&
error.code === ERROR_CODES.KOMGA.HTTP_ERROR &&
(error as any).context?.status === 404
(error as any).params?.status === 404
) {
return null;
}