Skip to content

Commit

Permalink
fix: Fixed functions for whatsapp >= 2.3000.1013409128
Browse files Browse the repository at this point in the history
  • Loading branch information
icleitoncosta committed May 10, 2024
1 parent d439df9 commit a2f9053
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/whatsapp/functions/msgFindQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ exportModule(
msgFindQuery: 'msgFindQuery',
},
(m) =>
(m.msgFindQuery && m.msgFindByIds) || // @whatsapp < 2.2301.5
(m.msgFindQuery && m.getMsgsByMsgKey) // @whatsapp >= 2.2301.5
(m.msgFindQuery && m.getMsgsByMsgKey) || // @whatsapp >= 2.2301.5
(m.msgFindQuery && m.queryMessageType) // @whatsapp >= 2.3000.1013409128
);

0 comments on commit a2f9053

Please sign in to comment.