Webpack build for branch master: 5bfc688bb0

This commit is contained in:
Travis CI 2017-05-05 23:09:39 +00:00
parent 19a911a971
commit 5ea6f19ae7
2 changed files with 3 additions and 3 deletions

View file

@ -7137,7 +7137,7 @@ class TextBasedChannel {
}
if (options.files) {
for (const i in options.files) {
for (let i = 0; i < options.files.length; i++) {
let file = options.files[i];
if (typeof file === 'string') file = { attachment: file };
if (!file.name) {
@ -9795,7 +9795,7 @@ class Webhook {
}
if (options.files) {
for (const i in options.files) {
for (let i = 0; i < options.files.length; i++) {
let file = options.files[i];
if (typeof file === 'string') file = { attachment: file };
if (!file.name) {

File diff suppressed because one or more lines are too long