Fix Baker Problems

This commit is contained in:
Qstick 2022-10-25 21:51:48 -05:00
parent 0a9bd8287f
commit 4eec675d61

View file

@ -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())