3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-24 04:49:25 +01:00

show width/height of imgur image too [#350]

This commit is contained in:
reality 2013-04-13 15:33:43 +00:00
parent 0e2e6a60db
commit 8a2dd076a4

View File

@ -21,7 +21,8 @@ var imgur = function(dbot) {
} else {
info += 'a non-animated ' + imgData.type.split('/')[1] + ' with ';
}
info += imgData.views + ' views].';
info += imgData.views + ' views (';
info += imgData.width + 'x' + imgData.height + ')].';
}
return info;