This commit is contained in:
Boof 2023-05-12 12:22:06 +02:00 committed by GitHub
parent d08a1beba4
commit 68b689e0f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ function load1() {
.then(arrayBuffer => {
const decoder = new TextDecoder('utf-8');
const data = decoder.decode(new Uint8Array(arrayBuffer));
arrayMD5 = data.split('\n');
array1 = data.split('\n');
})
}
function load256() {
@ -49,7 +49,7 @@ function load256() {
.then(arrayBuffer => {
const decoder = new TextDecoder('utf-8');
const data = decoder.decode(new Uint8Array(arrayBuffer));
arrayMD5 = data.split('\n');
array256 = data.split('\n');
})
}