mirror of
https://github.com/danbulant/discord.js
synced 2026-07-09 13:10:42 +00:00
fix(Util): reject with a meaningful error instead of throwing one
This commit is contained in:
parent
b05622766b
commit
44fefdfa49
2 changed files with 2 additions and 2 deletions
|
|
@ -271,7 +271,7 @@ class ClientDataResolver {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else if (resource.pipe && typeof resource.pipe === 'function') {
|
} else if (resource && resource.pipe && typeof resource.pipe === 'function') {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
const buffers = [];
|
const buffers = [];
|
||||||
resource.once('error', reject);
|
resource.once('error', reject);
|
||||||
|
|
|
||||||
|
|
@ -133,7 +133,7 @@ class TextBasedChannel {
|
||||||
if (options.files) {
|
if (options.files) {
|
||||||
for (let i = 0; i < options.files.length; i++) {
|
for (let i = 0; i < options.files.length; i++) {
|
||||||
let file = options.files[i];
|
let file = options.files[i];
|
||||||
if (typeof file === 'string' || Buffer.isBuffer(file)) file = { attachment: file };
|
if (!file || typeof file === 'string' || Buffer.isBuffer(file)) file = { attachment: file };
|
||||||
if (!file.name) {
|
if (!file.name) {
|
||||||
if (typeof file.attachment === 'string') {
|
if (typeof file.attachment === 'string') {
|
||||||
file.name = path.basename(file.attachment);
|
file.name = path.basename(file.attachment);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue