forked from GitHub/dbot
slim down the normal announcement
Specifying that images are non-animated each time isn't really required, and causes the string to be rather long. Stripping this implicit property makes it look a bit nicer.
This commit is contained in:
parent
c1f642084d
commit
7d0162afff
@ -20,7 +20,7 @@ var imgur = function(dbot) {
|
||||
if(imgData.animated) {
|
||||
info += 'an animated ' + imgData.type.split('/')[1] + ' with ';
|
||||
} else {
|
||||
info += 'a non-animated ' + imgData.type.split('/')[1] + ' with ';
|
||||
info += 'a ' + imgData.type.split('/')[1] + ' with ';
|
||||
}
|
||||
} else {
|
||||
info += 'an image with ';
|
||||
|
Loading…
Reference in New Issue
Block a user