fix(api): cleanup radarr bits in sonarr api (#2035)

This commit is contained in:
salty
2025-10-12 17:19:51 +02:00
committed by GitHub
parent 34fcc5d2c7
commit a8c7e35f56
2 changed files with 5 additions and 5 deletions

View File

@@ -271,7 +271,7 @@ mediaRoutes.delete(
if (!tvdbId) {
throw new Error('TVDB ID not found');
}
await (service as SonarrAPI).removeSerie(tvdbId);
await (service as SonarrAPI).removeSeries(tvdbId);
}
return res.status(204).send();