mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-05-04 18:50:23 +02:00
Fix Baker Problems
This commit is contained in:
parent
0a9bd8287f
commit
4eec675d61
1 changed files with 1 additions and 1 deletions
|
|
@ -171,7 +171,7 @@ public async Task<object> GetDownload(int id, string link, string file)
|
|||
|
||||
if (_indexerLimitService.AtDownloadLimit(indexerDef))
|
||||
{
|
||||
return Content(CreateErrorXML(429, $"Grab limit reached ({((IIndexerSettings)indexer.Definition.Settings).BaseSettings.DownloadLimit})"), "application/rss+xml");
|
||||
return Content(CreateErrorXML(429, $"Grab limit reached ({((IIndexerSettings)indexer.Definition.Settings).BaseSettings.GrabLimit})"), "application/rss+xml");
|
||||
}
|
||||
|
||||
if (link.IsNullOrWhiteSpace() || file.IsNullOrWhiteSpace())
|
||||
|
|
|
|||
Loading…
Reference in a new issue