Skip to content

Commit

Permalink
fix: Fixed call compatibility with WhatsApp >= 2.2333.11 (fix #1269)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgardmessias committed Aug 11, 2023
1 parent 28fae25 commit 57b1a1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/whatsapp/collections/CallCollection.ts
Expand Up @@ -33,6 +33,6 @@ export declare class CallCollection extends Collection<CallModel> {
}
exportModule(
exports,
{ CallCollection: 'CallCollectionImpl' },
(m) => m.CallCollectionImpl
{ CallCollection: ['CallCollectionImpl', 'default.constructor'] },
(m) => m.CallCollectionImpl || m.default.processIncomingCall
);

0 comments on commit 57b1a1e

Please sign in to comment.