From cae85433f9641cb8268f4612195465787dbe44d0 Mon Sep 17 00:00:00 2001
From: Jack Nolddor <1280022+nolddor@users.noreply.github.com>
Date: Thu, 18 Apr 2024 08:14:14 +0200
Subject: [PATCH] fix: getUserInventoryContents() make unnecesary calls

Steam inventory limits are back to normal there is no reason to just gather 2k items instead 5k max allowed by API
---
 components/users.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/users.js b/components/users.js
index 48a1d8e..80e4bec 100644
--- a/components/users.js
+++ b/components/users.js
@@ -590,7 +590,7 @@ SteamCommunity.prototype.getUserInventoryContents = function(userID, appID, cont
 			},
 			"qs": {
 				"l": language, // Default language
-				"count": 2000, // Max items per 'page'
+				"count": 5000, // Max items per 'page'
 				"start_assetid": start
 			},
 			"json": true