Compare commits

...

2 Commits

Author SHA1 Message Date
Alexander Corn
0ef652cbac 2.5.2 2015-07-10 16:24:59 -04:00
Alexander Corn
608377277c Sort market results by price to try to avoid duplicates 2015-07-10 16:24:42 -04:00
2 changed files with 3 additions and 1 deletions

View File

@@ -25,6 +25,8 @@ SteamCommunity.prototype.marketSearch = function(options, callback) {
qs.start = 0;
qs.count = 100;
qs.sort_column = 'price';
qs.sort_dir = 'asc';
performSearch(this.request, qs, [], callback);
};

View File

@@ -1,6 +1,6 @@
{
"name": "steamcommunity",
"version": "2.5.1",
"version": "2.5.2",
"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",