lib/pupil/statuses.rb in pupil-0.5 vs lib/pupil/statuses.rb in pupil-0.6
- old
+ new
@@ -138,11 +138,11 @@
def oembed(param={})
response = self.get("/1/statuses/oembed.json", param)
return response
end
- def status(status_id)
- response = self.get("/statuses/show/#{status_id}.json")
+ def status(status_id, param={})
+ response = self.get("/statuses/show/#{status_id}.json", param)
return false unless response
status = Status.new(response, @access_token)
return status
end
\ No newline at end of file