mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 05:47:22 -04: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…
Add table
Add a link
Reference in a new issue