Maintain comment

This commit is contained in:
Sainan 2025-01-18 10:54:47 +01:00
parent c2f4176a74
commit 0889c70acc

View File

@ -1092,6 +1092,7 @@ function doAddAllMods() {
}
modsAll = Array.from(modsAll);
// Batch to avoid PayloadTooLargeError
const batches = [];
for (let i = 0; i < modsAll.length; i += 1000) {
batches.push(modsAll.slice(i, i + 1000));