mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-06 08:34:28 +01:00
Fixed: History shows total results instead of query results for multi-part queries
This commit is contained in:
parent
20482fb39f
commit
9d16c93252
1 changed files with 1 additions and 1 deletions
|
|
@ -167,7 +167,7 @@ private async Task<IList<ReleaseInfo>> DispatchIndexer(Func<IIndexer, Task<Index
|
|||
|
||||
foreach (var query in indexerReports.Queries)
|
||||
{
|
||||
_eventAggregator.PublishEvent(new IndexerQueryEvent(indexer.Definition.Id, criteriaBase, query.ElapsedTime, query.StatusCode == 200, indexerReports.Releases.Count()));
|
||||
_eventAggregator.PublishEvent(new IndexerQueryEvent(indexer.Definition.Id, criteriaBase, query.ElapsedTime, query.StatusCode == 200, query.Releases.Count()));
|
||||
}
|
||||
|
||||
return indexerReports.Releases;
|
||||
|
|
|
|||
Loading…
Reference in a new issue