diff --git a/pagerite/analytics.py b/pagerite/analytics.py index 7dad3a9..fac9c5c 100644 --- a/pagerite/analytics.py +++ b/pagerite/analytics.py @@ -697,7 +697,7 @@ class Store: if hide: # Admin ping: cancel pending crawler hits and scrub the session. self.pending_crawlers = [ - hit for hit in self.pending_crawlers if hit.client == client_hash + hit for hit in self.pending_crawlers if hit.client != client_hash ] index = self.sessions.pop(client_hash, None) if index is not None and index < len(self.data.visits):