lyg
2024-06-09 dbb40c3b9190844a3f6bd9cbc04c8b000fb44168
修复线程数错误
1个文件已修改
2 ■■■ 已修改文件
src/main.mjs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main.mjs
@@ -446,7 +446,7 @@
  let finishCnt = 0;
  const finishBooks = [];
  const threadSize = config.threadSize;
  const thBookSize = endRow - startRow / threadSize
  const thBookSize = (endRow - startRow) / threadSize
  for (let sr = startRow; sr < endRow; sr += thBookSize) {
    let er = sr + thBookSize;
    if (er > endRow) {