Release v1.6.23
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
9cceaacd14
commit
26b2ef0abb
+5
-1
@@ -669,7 +669,11 @@ class BestDebridClient {
|
||||
try {
|
||||
return await this.tryRequest(request, link, signal);
|
||||
} catch (error) {
|
||||
lastError = compactErrorText(error);
|
||||
const errorText = compactErrorText(error);
|
||||
if (signal?.aborted || (/aborted/i.test(errorText) && !/timeout/i.test(errorText))) {
|
||||
throw error;
|
||||
}
|
||||
lastError = errorText;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user