From eacd85559745c00271739a47733523feaf5fdac2 Mon Sep 17 00:00:00 2001 From: Citrinate Date: Wed, 3 Apr 2024 08:26:59 -0400 Subject: [PATCH] Re-adjust magic number used to detect bad data --- BoosterManager/Data/MarketableApps.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BoosterManager/Data/MarketableApps.cs b/BoosterManager/Data/MarketableApps.cs index 06cc7e5..505902b 100644 --- a/BoosterManager/Data/MarketableApps.cs +++ b/BoosterManager/Data/MarketableApps.cs @@ -103,7 +103,7 @@ private static async Task UpdateFromSteam() { LastSteamUpdate = DateTime.Now; - if (AppIDs.Count - newerAppIDs.Count > 10000) { + if (AppIDs.Count - newerAppIDs.Count > 1000) { // Bad data from Steam, ignore it return; }