From fefc16bd137eb415cae14f58c761395dc9c19a90 Mon Sep 17 00:00:00 2001 From: advplyr Date: Tue, 1 Oct 2024 16:14:51 -0500 Subject: [PATCH] Fix:Use region for author search by name #3470 --- server/providers/Audnexus.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/providers/Audnexus.js b/server/providers/Audnexus.js index 60762ede..4f11a2a3 100644 --- a/server/providers/Audnexus.js +++ b/server/providers/Audnexus.js @@ -129,7 +129,7 @@ class Audnexus { return null } - const author = await this.authorRequest(closestMatch.asin) + const author = await this.authorRequest(closestMatch.asin, region) if (!author) { return null }