encoding binary doesn't return a buffer??

This commit is contained in:
Vendicated 2022-10-22 23:47:21 +02:00
parent 934a89add0
commit 409fb6ff4e
No known key found for this signature in database
GPG Key ID: EC781ADFB93EFFA3

@ -71,11 +71,11 @@ await Promise.all(
zip({ zip({
dist: { dist: {
"Vencord.js": readFileSync("dist/browser.js", "binary") "Vencord.js": readFileSync("dist/browser.js")
}, },
...Object.fromEntries(await Promise.all(["background.js", "content.js", "manifest.json"].map(async f => [ ...Object.fromEntries(await Promise.all(["background.js", "content.js", "manifest.json"].map(async f => [
f, f,
await readFile(join("browser", f), "binary") await readFile(join("browser", f))
]))), ]))),
}, {}, (err, data) => { }, {}, (err, data) => {
if (err) { if (err) {