Round 6 bug fixes (pre-release)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sucukdeluxe
2026-03-04 21:23:34 +01:00
co-authored by Claude Opus 4.6
parent 1d0ee31001
commit 0ca359e509
5 changed files with 47 additions and 10 deletions
+2 -2
View File
@@ -650,7 +650,7 @@ class MegaDebridClient {
await sleepWithSignal(retryDelay(attempt), signal);
}
}
throw new Error(lastError || "Mega-Web Unrestrict fehlgeschlagen");
throw new Error(String(lastError || "Mega-Web Unrestrict fehlgeschlagen").replace(/^Error:\s*/i, ""));
}
}
@@ -954,7 +954,7 @@ class AllDebridClient {
}
}
throw new Error(lastError || "AllDebrid Unrestrict fehlgeschlagen");
throw new Error(String(lastError || "AllDebrid Unrestrict fehlgeschlagen").replace(/^Error:\s*/i, ""));
}
}