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

View file

@ -71,11 +71,11 @@ await Promise.all(
zip({
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 => [
f,
await readFile(join("browser", f), "binary")
await readFile(join("browser", f))
]))),
}, {}, (err, data) => {
if (err) {