Misc Updates

This commit is contained in:
Qstick
2021-01-10 02:50:10 -05:00
parent 88d1a3db6f
commit 66f726bf6f
8 changed files with 23 additions and 9 deletions

View File

@@ -51,7 +51,7 @@ namespace Prowlarr.Api.V1.Search
{
try
{
var decisions = _nzbSearhService.Search(new NewznabRequest { q = query, t = "search", cat = string.Join(",", categories) }, indexerIds, true).Releases;
var decisions = _nzbSearhService.Search(new NewznabRequest { q = query, source = "Prowlarr", t = "search", cat = string.Join(",", categories) }, indexerIds, true).Releases;
return MapDecisions(decisions);
}