Closed EpixScripts closed 3 years ago
In dumpBase64 for the roblox version, to create the table of output bytes the script will do table.create(math.ceil(byteCount * 0.333)). This is incorrect, as Base64 does not make the file size 1/3. it should be * 1.333.
dumpBase64
table.create(math.ceil(byteCount * 0.333))
* 1.333
Should be fixed in commit 4558498
In
dumpBase64
for the roblox version, to create the table of output bytes the script will dotable.create(math.ceil(byteCount * 0.333))
. This is incorrect, as Base64 does not make the file size 1/3. it should be* 1.333
.