Cleanup SearchCriteria, Pass Cats from Search to Indexers

This commit is contained in:
Qstick
2020-11-18 15:35:14 -05:00
parent 529102ebcf
commit 6100adc515
25 changed files with 89 additions and 176 deletions

View File

@@ -90,7 +90,7 @@ namespace NzbDrone.Core.History
};
history.Data.Add("ElapsedTime", message.Time.ToString());
history.Data.Add("Query", message.Query.SceneTitles.FirstOrDefault() ?? string.Empty);
history.Data.Add("Query", message.Query.SearchTerm ?? string.Empty);
history.Data.Add("Successful", message.Successful.ToString());
history.Data.Add("QueryResults", message.Results.HasValue ? message.Results.ToString() : null);