Fix characterCards importCharacterProcess function

This commit is contained in:
kwaroran
2024-03-28 01:25:11 +09:00
parent 9f0a8f38b5
commit 279b68d3c6

View File

@@ -88,7 +88,7 @@ async function importCharacterProcess(f:{
if(chunk.key === 'chara'){
//For memory reason, limit to 2MB
if(readedChara.length < 2 * 1024 * 1024){
readedChara = chunk.value.replaceAll('\0', '')
readedChara = chunk.value
}
continue
}