Skip to content

Commit

Permalink
Merge pull request #12 from resurge/master
Browse files Browse the repository at this point in the history
Fixes #11 : wrong value returned in callback of schedulesList
  • Loading branch information
pyeremenko committed Apr 14, 2015
2 parents ff5e282 + d8f0e0c commit c35d96b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/client.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/client.coffee
Expand Up @@ -148,7 +148,7 @@ class Client
schedulesList: (options, cb) ->
@api.schedulesList(options, (error, body) ->
if not error?
cb(error, body.tasks)
cb(error, body.schedules)
else
cb(error, body)
)
Expand Down

0 comments on commit c35d96b

Please sign in to comment.