()
| 3642 | if (msg.text) { |
| 3643 | if (command === '/start') { |
| 3644 | const welcome = () => { |
| 3645 | bot.sendMessage(msg.chat.id, |
| 3646 | 'Hello! I am the official <b>Telegram X</b> bot.\n\n' + |
| 3647 | 'You can send me <b>checksum</b> of an <b>APK file</b> you downloaded, and I can tell whether it corresponds to any <b>Telegram X</b> build I am aware of.\n\n' + |
| 3648 | '<b>Note</b>: you can always grab a fresh APK from @tgx_log.', |
| 3649 | {parse_mode: 'HTML'} |
| 3650 | ).catch(globalErrorHandler()); |
| 3651 | }; |
| 3652 | if (commandArgs === 'crash') { |
| 3653 | // Do nothing. Wait for incoming crash file. |
| 3654 | } else if (commandArgs === 'feedback') { |
no test coverage detected