fb-messenger-bot-chat
Advanced tools
Comparing version 0.0.12 to 0.0.13
{ | ||
"name": "fb-messenger-bot-chat", | ||
"version": "0.0.12", | ||
"version": "0.0.13", | ||
"description": "Facebook Messenger Bot Send API implementation and chat simulator", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -188,2 +188,7 @@ module.exports = (config) => { | ||
if (message.message && message.message.attachments && message.message.attachments.length > 0 && message.message.attachments[0].type === 'image') { | ||
recognizedMessage.type = 'image'; | ||
recognizedMessage.data = message.message.attachments[0].payload; | ||
} | ||
// if type text, quick_reply transformed to postbacks | ||
@@ -190,0 +195,0 @@ if (message.message && message.message.text) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21564
471