Skip to content

Commit

Permalink
🚑 launch fixes #3190
Browse files Browse the repository at this point in the history
  • Loading branch information
smashah committed Apr 11, 2024
1 parent d46d46e commit 0b40c87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion patches.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/lib/launch.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/lib/wapi.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if (!window.Store || !window.Store.Msg) {
{ id: "Sticker", module: "WAWebStickerPackCollection", resolver: m=> m.StickerPackCollection, conditions: (module) => (module.default && module.default.Sticker) ? module.default.Sticker : null },
{ id: "UploadUtils", module: "WAWebUploadManager", conditions: (module) => (module.default && module.default.encryptAndUpload) ? module.default : null }
];
const e = (m) => require("__debug").modulesMap[m]?.exports || false
const e = (m) => require("__debug").modulesMap[m] || false
neededObjects.map((needObj) => {
if (!needObj.module) return;
if(!e(needObj.module)) return;
Expand Down

0 comments on commit 0b40c87

Please sign in to comment.