From 4e204d4bf75c69ecc221891ab53cba15821a5017 Mon Sep 17 00:00:00 2001 From: funman300 Date: Sun, 19 Apr 2026 01:08:24 -0700 Subject: [PATCH] detect: filter blizzard tools, error/repair/diagnostic exes --- src/detect.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/detect.rs b/src/detect.rs index f029191..100c4da 100644 --- a/src/detect.rs +++ b/src/detect.rs @@ -70,6 +70,7 @@ const SKIP_EXES: &[&str] = &[ "uninstall", "uninst", "crash", + "error", "reporter", "update", "updater", @@ -78,6 +79,8 @@ const SKIP_EXES: &[&str] = &[ "helper", "agent", "service", + "repair", + "diagnostic", "redist", "vcredist", "dxsetup", @@ -87,6 +90,7 @@ const SKIP_EXES: &[&str] = &[ "bootstrapper", "launcher", // launcher tools, not games "battlenet", + "blizzard", "eadesktop", "eabackgroundservice", "ealink",