diff --git a/util.js b/util.js index a5312bf..0ff367f 100644 --- a/util.js +++ b/util.js @@ -394,7 +394,7 @@ async function saveLargeObject(obj, filename) { for (let i = 0; i < entries.length; i++) { const [key, value] = entries[i]; // stringify مقدار - const chunk = JSON.stringify(value, null, 1) + const chunk = JSON.stringify(value, null, 2) .split('\n') .map((line, idx) => idx === 0 ? ` "${key}": ${line}`