mirror of
https://github.com/danbulant/discord.js
synced 2026-07-09 05:00:48 +00:00
Fixed bug which stopped file sending
This commit is contained in:
parent
68fd2ee9dd
commit
8a7629582a
3 changed files with 3 additions and 3 deletions
|
|
@ -595,7 +595,7 @@ var Client = (function () {
|
||||||
fstream = file;
|
fstream = file;
|
||||||
}
|
}
|
||||||
|
|
||||||
self.resolveDestination(destination).then(send)["catch"](error);
|
self.resolveDestination(destination).then(send)["catch"](bad);
|
||||||
|
|
||||||
function send(destination) {
|
function send(destination) {
|
||||||
if (self.options.queue) {
|
if (self.options.queue) {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "discord.js",
|
"name": "discord.js",
|
||||||
"version": "3.1.4",
|
"version": "3.1.5",
|
||||||
"description": "A way to interface with the Discord API",
|
"description": "A way to interface with the Discord API",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
|
|
@ -600,7 +600,7 @@ class Client {
|
||||||
fstream = file;
|
fstream = file;
|
||||||
}
|
}
|
||||||
|
|
||||||
self.resolveDestination(destination).then(send).catch(error);
|
self.resolveDestination(destination).then(send).catch(bad);
|
||||||
|
|
||||||
function send(destination) {
|
function send(destination) {
|
||||||
if(self.options.queue){
|
if(self.options.queue){
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue