Skip to content

Instantly share code, notes, and snippets.

@kruppel
Created May 15, 2011 20:42
Show Gist options
  • Save kruppel/973515 to your computer and use it in GitHub Desktop.
Save kruppel/973515 to your computer and use it in GitHub Desktop.
Decrease results param value
diff --git a/lib/station.js b/lib/station.js
index 775aa98..fea1648 100644
--- a/lib/station.js
+++ b/lib/station.js
@@ -40,7 +40,7 @@ Station.prototype = {
this._ensureCatalog({}, function (err) {
if (err) return callback(err);
- self._getPlaylist({ results: 100 }, function (err, rdioIdArray) {
+ self._getPlaylist({ results: 50 }, function (err, rdioIdArray) {
if (err) return callback(err);
self._playlist = rdioIdArray;
stations[self._username] = self;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment