Skip to content

Commit

Permalink
fix missing/wrong parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriklv committed Jun 24, 2014
1 parent 2649409 commit c8e6296
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions services/index.js
@@ -1,5 +1,5 @@
exports = module.exports = function (models, helpers) {
exports = module.exports = function (models, spotify, helpers) {
return {
queue: require('./queue')(models.QueueItem, helpers)
queue: require('./queue')(models.QueueItem, spotify, helpers)
};
};
4 changes: 2 additions & 2 deletions services/queue/index.js
@@ -1,8 +1,8 @@
exports = module.exports = function (QueueItem, helpers) {
exports = module.exports = function (QueueItem, spotify, helpers) {
return {
get: require('./get')(QueueItem, helpers),
fetch: require('./fetch')(QueueItem, helpers),
add: require('./add')(QueueItem, helpers),
add: require('./add')(QueueItem, spotify, helpers),
update: require('./update')(QueueItem, helpers)
};
};

0 comments on commit c8e6296

Please sign in to comment.