Skip to content
This repository has been archived by the owner on Jun 8, 2023. It is now read-only.

Commit

Permalink
Fixing cheer script
Browse files Browse the repository at this point in the history
This script was broken due a change at imgur's API json representation. Now the JSON returns the encapsulated images gallery as a `data` element. This error was causing hubot to hang everytime someone tried to use this script
  • Loading branch information
pellegrino committed Dec 19, 2012
1 parent 9870aee commit 4fb0329
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/cheer.coffee
Expand Up @@ -26,6 +26,6 @@ aww = (msg) ->
.http('http://imgur.com/r/aww.json')
.get() (err, res, body) ->
images = JSON.parse(body)
images = images.gallery
images = images.data
image = msg.random images
msg.send "http://i.imgur.com/#{image.hash}#{image.ext}"

0 comments on commit 4fb0329

Please sign in to comment.