Skip to content

Commit

Permalink
updated parser
Browse files Browse the repository at this point in the history
  • Loading branch information
gitbot-x authored Apr 19, 2024
1 parent 33b1696 commit 2e7350a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions msg_parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ module.exports = ({ requestBody, currentWABA_ID }) => {
msgType = 'ad_message';
} else if (message.type === 'text') {
msgType = 'text_message';
} else if (message.type === 'audio') {
msgType = 'audio_message';
} else if (message.type === 'sticker') {
msgType = 'sticker_message';
} else if (message.type === 'image') {
Expand Down

0 comments on commit 2e7350a

Please sign in to comment.