mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-17 20:13:30 +01:00
Removed debug info whoops
This commit is contained in:
@@ -1430,7 +1430,6 @@ var Client = (function () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
self.startPM(destination).then(function (pmc) {
|
self.startPM(destination).then(function (pmc) {
|
||||||
console.log(pmc);
|
|
||||||
resolve(pmc.id);
|
resolve(pmc.id);
|
||||||
})["catch"](reject);
|
})["catch"](reject);
|
||||||
} else {
|
} else {
|
||||||
@@ -1685,7 +1684,6 @@ var Client = (function () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var fn = function fn() {
|
var fn = function fn() {
|
||||||
console.log(Endpoints.CHANNELS + "/" + channel + "/typing");
|
|
||||||
request.post(Endpoints.CHANNELS + "/" + channel + "/typing").set("authorization", self.token).end();
|
request.post(Endpoints.CHANNELS + "/" + channel + "/typing").set("authorization", self.token).end();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1168,7 +1168,6 @@ class Client {
|
|||||||
|
|
||||||
//we don't, at this point we're late
|
//we don't, at this point we're late
|
||||||
self.startPM(destination).then(function (pmc) {
|
self.startPM(destination).then(function (pmc) {
|
||||||
console.log(pmc);
|
|
||||||
resolve(pmc.id);
|
resolve(pmc.id);
|
||||||
}).catch(reject);
|
}).catch(reject);
|
||||||
|
|
||||||
@@ -1420,7 +1419,6 @@ class Client {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var fn = function(){
|
var fn = function(){
|
||||||
console.log(`${Endpoints.CHANNELS}/${channel}/typing`);
|
|
||||||
request
|
request
|
||||||
.post(`${Endpoints.CHANNELS}/${channel}/typing`)
|
.post(`${Endpoints.CHANNELS}/${channel}/typing`)
|
||||||
.set("authorization", self.token)
|
.set("authorization", self.token)
|
||||||
|
|||||||
Reference in New Issue
Block a user