Skip to content

Commit

Permalink
Update client.js
Browse files Browse the repository at this point in the history
  • Loading branch information
CE1CECL authored Apr 5, 2024
1 parent 7ca5e76 commit 00ee777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ const processFile = async (asset) => {
}
await fs.writeFile(path.join(CACHE_PATH, asset), text);
let ret = new Set([
...(text.match(/([0-9]{5}.*\.[A-Fa-f0-9]{20}||[A-Fa-f0-9]{20})/g) || []),
...(text.match(/(((([0-9]){5})(.*)((\.){1})(([A-Fa-f0-9]){20}))||((([A-Fa-f0-9]){20})))/g) || []),
...[...text.matchAll(/\.exports=.\..\+"(.*?\..{0,5})"/g)].map((x) => x[1],),
...[...text.matchAll(/\/assets\/([a-zA-Z0-9]*?\.[a-z0-9]{0,5})/g)].map((x) => x[1],),
]);
Expand Down

0 comments on commit 00ee777

Please sign in to comment.