feat(servarr-api): make Servarr API request timeout configurable (#2556)

This commit is contained in:
fallenbagel
2026-02-23 04:32:31 +05:00
committed by GitHub
parent 5013d1d54d
commit 3bcb4da1e5
6 changed files with 50 additions and 23 deletions

View File

@@ -111,16 +111,8 @@ class SonarrAPI extends ServarrBase<{
episodeId: number;
episode: EpisodeResult;
}> {
constructor({
url,
apiKey,
timeout,
}: {
url: string;
apiKey: string;
timeout?: number;
}) {
super({ url, apiKey, apiName: 'Sonarr', cacheName: 'sonarr', timeout });
constructor({ url, apiKey }: { url: string; apiKey: string }) {
super({ url, apiKey, apiName: 'Sonarr', cacheName: 'sonarr' });
}
public async getSeries(): Promise<SonarrSeries[]> {