mirror of
https://github.com/reality/dbot.git
synced 2025-01-11 20:42:37 +01:00
fix for not found
This commit is contained in:
parent
760780537a
commit
ab9cfb1469
@ -179,12 +179,14 @@ var imgur = function(dbot) {
|
||||
'q': term
|
||||
}
|
||||
}, function(err, response, body) {
|
||||
if(body.data) {
|
||||
if(body.data && body.data[0] != undefined) {
|
||||
this.api.getGalleryInfo(body.data[0].id, function(gal) {
|
||||
event.reply(dbot.t('imgurinfo', {
|
||||
'info': this.internalAPI.galleryInfoString(gal)
|
||||
}) + ' - ' + gal.data.link);
|
||||
}.bind(this));
|
||||
} else {
|
||||
event.reply(dbot.t('imgur_noresults'));
|
||||
}
|
||||
}.bind(this));
|
||||
}
|
||||
|
@ -12,5 +12,8 @@
|
||||
"en": "[{info}]",
|
||||
"fr": "[{info}]",
|
||||
"it": "[{info}]"
|
||||
},
|
||||
"imgur_noresults": {
|
||||
"en": "No results found."
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user