This commit is contained in:
JustArchi
2016-02-16 08:25:27 +01:00
parent b3e420d423
commit 45230a57ee
2 changed files with 2 additions and 2 deletions

View File

@@ -392,7 +392,7 @@ namespace ArchiSteamFarm {
return true;
}
internal async Task<List<SteamItem>> GetMyTradingInventory() {
internal async Task<List<SteamItem>> GetMyTradableInventory() {
JObject jObject = null;
for (byte i = 0; i < WebBrowser.MaxRetries && jObject == null; i++) {
jObject = await WebBrowser.UrlGetToJObject("https://steamcommunity.com/my/inventory/json/753/6?trading=1", Cookie).ConfigureAwait(false);

View File

@@ -522,7 +522,7 @@ namespace ArchiSteamFarm {
}
await Trading.LimitInventoryRequestsAsync().ConfigureAwait(false);
List<SteamItem> inventory = await ArchiWebHandler.GetMyTradingInventory().ConfigureAwait(false);
List<SteamItem> inventory = await ArchiWebHandler.GetMyTradableInventory().ConfigureAwait(false);
if (inventory == null || inventory.Count == 0) {
return "Nothing to send, inventory seems empty!";