Compare commits

...

2 Commits

Author SHA1 Message Date
Alexander Corn
459fe4d8b1 3.30.1 2016-12-15 00:53:46 -05:00
Alexander Corn
489c0441a5 Restore market_fee_app property to CEconItem for Steam Community items 2016-12-15 00:53:26 -05:00
2 changed files with 7 additions and 1 deletions

View File

@@ -60,6 +60,12 @@ function CEconItem(item, description, contextID) {
});
}
// Restore market_fee_app, if applicable
var match;
if (this.appid == 753 && this.contextid == 6 && this.market_hash_name && (match = this.market_hash_name.match(/^(\d+)\-/))) {
this.market_fee_app = parseInt(match[1], 10);
}
if (this.actions === "") {
this.actions = [];
}

View File

@@ -1,6 +1,6 @@
{
"name": "steamcommunity",
"version": "3.30.0",
"version": "3.30.1",
"description": "Provides an interface for logging into and interacting with the Steam Community website",
"keywords": ["steam", "steam community"],
"homepage": "https://github.com/DoctorMcKay/node-steamcommunity",