Fix(telegram) global functions

This commit is contained in:
Stefan080106
2023-04-17 19:58:46 +02:00
parent 60962df18c
commit 720aec9c6a
2 changed files with 13 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
{
"activate_telegram": false,
"activate_telegram": true,
"printer_device_id": "Microsoft Print to PDF",
"debug": true
}

View File

@@ -23,12 +23,21 @@ const printerName = config.printer_device_id;
const PORT = config.port || 2000;
const cacheFolder = "./cache/"
if (config.activate_telegram) {
const token = '6150769224:AAGhBagPEi23QtBJl65YNuwEBBXwHguDV0E';
let bot = null;
const messageIDs = [1034133487]
const bot = new TelegramBot(token, { polling: true });
function sendMessage(msg, idList) {
idList.forEach((id) => {
bot.sendMessage(id, msg);
})
}
if (config.activate_telegram) {
const token = '6150769224:AAGhBagPEi23QtBJl65YNuwEBBXwHguDV0E';
bot = new TelegramBot(token, { polling: true });
bot.setMyCommands([
{ command: '/chatid', description: 'Zeigt deine Chat ID' },
@@ -56,11 +65,7 @@ if (config.activate_telegram) {
});
function sendMessage(msg, idList) {
idList.forEach((id) => {
bot.sendMessage(id, msg);
})
}
sendMessage("[INFO]: Drucker Service wird gestartet", messageIDs)
}