Skip to content

Commit

Permalink
Include response in timeline success closures
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdonnelly committed Jun 14, 2014
1 parent 983833a commit 6bc9626
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SwifterDemoMac/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class ViewController: NSViewController {
let swifter = Swifter(account: twitterAccount)

swifter.getStatusesHomeTimelineWithCount(20, sinceID: nil, maxID: nil, trimUser: true, contributorDetails: false, includeEntities: true, success: {
statuses in
statuses, response in

println(statuses)

Expand Down
2 changes: 1 addition & 1 deletion SwifterDemoiOS/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class ViewController: UIViewController {
let swifter = Swifter(account: twitterAccount)

swifter.getStatusesHomeTimelineWithCount(20, sinceID: nil, maxID: nil, trimUser: true, contributorDetails: false, includeEntities: true, success: {
statuses in
statuses, response in

println(statuses)

Expand Down

0 comments on commit 6bc9626

Please sign in to comment.