From bb7dc2bef6f0cde96a78aec968cac8d31667005a Mon Sep 17 00:00:00 2001 From: Flummi Date: Sat, 14 Sep 2019 13:17:35 +0000 Subject: [PATCH] too much debug lol --- src/clients/tg.mjs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/clients/tg.mjs b/src/clients/tg.mjs index 45cc924..177eb9f 100644 --- a/src/clients/tg.mjs +++ b/src/clients/tg.mjs @@ -78,8 +78,7 @@ export default class tg extends EventEmitter { }; if (reply) opts.body.reply_to_message_id = reply; - const res = await (await fetch(`${this.api}/sendMessage`, opts)).json(); - console.log(res); + await fetch(`${this.api}/sendMessage`, opts); } async sendmsg(mode, recipient, msg) { await this.send(recipient, msg);