From fc198d6eae34532bc5b8e569857c36f060600a58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Domeradzki?= Date: Tue, 1 Jul 2025 16:13:47 +0200 Subject: [PATCH] Update MaxItemsInSingleInventoryRequest --- ArchiSteamFarm/Steam/Integration/ArchiWebHandler.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ArchiSteamFarm/Steam/Integration/ArchiWebHandler.cs b/ArchiSteamFarm/Steam/Integration/ArchiWebHandler.cs index 865362395..a7e5bc7d3 100644 --- a/ArchiSteamFarm/Steam/Integration/ArchiWebHandler.cs +++ b/ArchiSteamFarm/Steam/Integration/ArchiWebHandler.cs @@ -51,8 +51,8 @@ using SteamKit2; namespace ArchiSteamFarm.Steam.Integration; public sealed class ArchiWebHandler : IDisposable { - // Steam network (ArchiHandler) works unstable with more items than this (throwing upon description details), while Steam web (ArchiWebHandler) silently limits to this value maximum - internal const ushort MaxItemsInSingleInventoryRequest = 2500; + // Steam network (ArchiHandler) may work unstable with more items than this (throwing upon description details), while Steam web (ArchiWebHandler) forcefully limits to this value maximum + internal const ushort MaxItemsInSingleInventoryRequest = 2000; private const string EconService = "IEconService"; private const byte MaxTradeOfferMessageLength = 128;