Skip to content

Commit

Permalink
Re-adjust magic number used to detect bad data
Browse files Browse the repository at this point in the history
  • Loading branch information
Citrinate committed Apr 3, 2024
1 parent c1261a4 commit eacd855
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BoosterManager/Data/MarketableApps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit eacd855

Please sign in to comment.