mirror of
https://github.com/danbulant/discord.js
synced 2026-05-25 13:02:38 +00:00
Removed debug info whoops
This commit is contained in:
parent
ccfac508dc
commit
bef4985064
2 changed files with 0 additions and 4 deletions
|
|
@ -1430,7 +1430,6 @@ var Client = (function () {
|
|||
}
|
||||
|
||||
self.startPM(destination).then(function (pmc) {
|
||||
console.log(pmc);
|
||||
resolve(pmc.id);
|
||||
})["catch"](reject);
|
||||
} else {
|
||||
|
|
@ -1685,7 +1684,6 @@ var Client = (function () {
|
|||
}
|
||||
|
||||
var fn = function fn() {
|
||||
console.log(Endpoints.CHANNELS + "/" + channel + "/typing");
|
||||
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
|
||||
self.startPM(destination).then(function (pmc) {
|
||||
console.log(pmc);
|
||||
resolve(pmc.id);
|
||||
}).catch(reject);
|
||||
|
||||
|
|
@ -1420,7 +1419,6 @@ class Client {
|
|||
}
|
||||
|
||||
var fn = function(){
|
||||
console.log(`${Endpoints.CHANNELS}/${channel}/typing`);
|
||||
request
|
||||
.post(`${Endpoints.CHANNELS}/${channel}/typing`)
|
||||
.set("authorization", self.token)
|
||||
|
|
|
|||
Loading…
Reference in a new issue