Decreased audible retries when doing manual imports.

This commit is contained in:
Mattias Carlsson
2026-04-19 21:53:28 +02:00
parent ad1ab3af05
commit 9a6062d860
2 changed files with 54 additions and 3 deletions
+1 -1
View File
@@ -164,7 +164,7 @@ export async function POST(request: NextRequest) {
// keyword text search. Fall back to text search if the lookup fails.
if (book.extractedAsin) {
try {
const asinResult = await audibleService.getAudiobookDetails(book.extractedAsin);
const asinResult = await audibleService.lookupAsinFast(book.extractedAsin);
if (asinResult) {
match = asinResult;
}