From da927cfd00c37b1c86fab7c268c185623f2be9eb Mon Sep 17 00:00:00 2001 From: bluza Date: Sun, 7 Sep 2025 09:47:08 -0700 Subject: [PATCH 1/2] Remove changing total counts -- only change the result count for filtered items --- domaintools/api.py | 1 - 1 file changed, 1 deletion(-) diff --git a/domaintools/api.py b/domaintools/api.py index e95b7fd..cce96c9 100644 --- a/domaintools/api.py +++ b/domaintools/api.py @@ -657,7 +657,6 @@ def iris_investigate( results["results"] = filtered_results results["results_count"] = len(filtered_results) - results["total_count"] = len(filtered_results) return results From f0e3381260c5396141084f22187caf3d7200cbdb Mon Sep 17 00:00:00 2001 From: bluza Date: Sun, 7 Sep 2025 09:53:11 -0700 Subject: [PATCH 2/2] Fix incorrect total count for iris enrich --- domaintools/api.py | 1 - 1 file changed, 1 deletion(-) diff --git a/domaintools/api.py b/domaintools/api.py index cce96c9..052f087 100644 --- a/domaintools/api.py +++ b/domaintools/api.py @@ -521,7 +521,6 @@ def iris_enrich(self, *domains, **kwargs): results["results"] = filtered_results results["results_count"] = len(filtered_results) - results["total_count"] = len(filtered_results) return results