We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab65c9d commit 30670ddCopy full SHA for 30670dd
js/bot.js
@@ -16,6 +16,7 @@ var Bot = class {
16
//get bot name
17
this.bot.telegram.getMe().then((botInfo) => {
18
this.bot.options.username = botInfo.username;
19
+ this.logger.info('Using bot with name ' + this.bot.options.username + '.');
20
})
21
22
//Welcome message on bot start
main.js
@@ -50,7 +50,7 @@ function createWindow() {
50
// Open the DevTools.
51
// win.webContents.openDevTools()
52
53
- //bot.startBot()
+ bot.startBot()
54
55
// Emitted when the window is closed.
56
win.on('closed', () => {
0 commit comments