3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-23 20:39:25 +01:00

imgur better

This commit is contained in:
reality 2013-04-10 20:08:04 +00:00
parent 88037de55e
commit d82108de83

View File

@ -11,7 +11,7 @@ var imgur = function(dbot) {
'getRandomImage': function(callback) {
var testUrl = 'http://i.imgur.com/' +
Math.random().toString(36).substr(2,6) +
'.jpg';
'.png';
var image = request(testUrl, function(error, response, body) {
// 492 is body.length of a removed image
if(!error && response.statusCode == 200 && body.length != 492) {