Skip to content

Commit

Permalink
fix: Fixed functions for >= 2.3000.1015671410
Browse files Browse the repository at this point in the history
  • Loading branch information
icleitoncosta committed Aug 15, 2024
1 parent 8232422 commit ca3036b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/whatsapp/collections/ProfilePicThumbCollection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ export declare class ProfilePicThumbCollection extends BaseCollection<ProfilePic
exportModule(
exports,
{
ProfilePicThumbCollection: 'ProfilePicThumbCollectionImpl',
ProfilePicThumbCollection: [
'ProfilePicThumbCollectionImpl',
'ProfilePicThumbCollection',
],
},
(m) => m.ProfilePicThumbCollectionImpl
(m) => m.ProfilePicThumbCollectionImpl || m.ProfilePicThumbCollection
);
11 changes: 11 additions & 0 deletions src/whatsapp/stores.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,3 +349,14 @@ exportModule(
},
(m) => m.BusinessProfileCollectionImpl || m.BusinessProfileCollection
);

exportModule(
exports,
{
ProfilePicThumbStore: [
'ProfilePicThumbCollectionImpl',
'ProfilePicThumbCollection',
],
},
(m) => m.ProfilePicThumbCollectionImpl || m.ProfilePicThumbCollection
);

0 comments on commit ca3036b

Please sign in to comment.