mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-06 08:34:28 +01:00
Show all queries in Total Queries block
This commit is contained in:
parent
4410636b97
commit
0a439a4a96
1 changed files with 6 additions and 1 deletions
|
|
@ -206,7 +206,12 @@ function IndexerStats() {
|
|||
const userAgentCount = item.userAgents?.length ?? 0;
|
||||
const queryCount =
|
||||
item.indexers?.reduce((total, indexer) => {
|
||||
return total + indexer.numberOfQueries;
|
||||
return (
|
||||
total +
|
||||
indexer.numberOfQueries +
|
||||
indexer.numberOfRssQueries +
|
||||
indexer.numberOfAuthQueries
|
||||
);
|
||||
}, 0) ?? 0;
|
||||
const grabCount =
|
||||
item.indexers?.reduce((total, indexer) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue