some cleanup
This commit is contained in:
parent
5b333ca5a2
commit
d96a2d8416
1 changed files with 1 additions and 2 deletions
3
main.mjs
3
main.mjs
|
@ -13,8 +13,6 @@ const bot = new TelegramBot(config.telegramBotToken, {
|
||||||
polling: true,
|
polling: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log(config);
|
|
||||||
|
|
||||||
bot.on("channel_post", async (msg) => {
|
bot.on("channel_post", async (msg) => {
|
||||||
const link = extractMessageLink(msg);
|
const link = extractMessageLink(msg);
|
||||||
if (!link) return;
|
if (!link) return;
|
||||||
|
@ -41,6 +39,7 @@ bot.on("channel_post", async (msg) => {
|
||||||
)(config)();
|
)(config)();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// TODO: use option instead
|
||||||
function extractMessageLink(msg) {
|
function extractMessageLink(msg) {
|
||||||
const links = (msg.entities ?? []).filter(isLink);
|
const links = (msg.entities ?? []).filter(isLink);
|
||||||
return links.length ? links[0] : null;
|
return links.length ? links[0] : null;
|
||||||
|
|
Reference in a new issue