@codebam/cf-workers-telegram-bot 12.6.7 → 12.6.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/telegram_bot.js +2 -1
- package/package.json +1 -1
package/dist/telegram_bot.js
CHANGED
|
@@ -120,7 +120,8 @@ export default class TelegramBot {
|
|
|
120
120
|
// For guest messages, we fall through to command detection if it's not a special type
|
|
121
121
|
break;
|
|
122
122
|
case 'business_message':
|
|
123
|
-
|
|
123
|
+
// For business messages, we fall through to command detection if it's not a special type
|
|
124
|
+
break;
|
|
124
125
|
case 'pre_checkout_query':
|
|
125
126
|
return ':pre_checkout_query' in this.commands ? ':pre_checkout_query' : this.defaultCommand;
|
|
126
127
|
case 'successful_payment':
|