@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.
@@ -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
- return this.defaultCommand;
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':
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codebam/cf-workers-telegram-bot",
3
- "version": "12.6.7",
3
+ "version": "12.6.8",
4
4
  "description": "serverless telegram bot on cf workers",
5
5
  "main": "./dist/main.js",
6
6
  "module": "./dist/main.js",