Skip to content

Commit

Permalink
fix: Fixed getNumChatsPinned function
Browse files Browse the repository at this point in the history
  • Loading branch information
icleitoncosta committed May 2, 2024
1 parent 8bc5f9e commit b91ec15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/whatsapp/functions/getNumChatsPinned.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export declare function getNumChatsPinned(value: any): any;
exportModule(
exports,
{
getNumChatsPinned: 'getNumChatsPinned',
getNumChatsPinned: ['getNumChatsPinned', 'getNumConversationsPinned'],
},
(m) => m.getNumChatsPinned
(m) => m.getNumChatsPinned || m.getNumConversationsPinned
);

0 comments on commit b91ec15

Please sign in to comment.