fix(edit-docs): fix random erase of attachments due to consistency issues

This commit is contained in:
Elian Doran
2025-04-04 20:01:28 +03:00
parent 3a16bf59ef
commit 65d017390e
2 changed files with 11 additions and 9 deletions

View File

@@ -28,9 +28,9 @@ async function main() {
async function setOptions() {
const optionsService = (await import("./src/services/options.js")).default;
optionsService.setOption("eraseUnusedAttachmentsAfterSeconds", 600);
optionsService.setOption("eraseUnusedAttachmentsAfterSeconds", 10);
optionsService.setOption("eraseUnusedAttachmentsAfterTimeScale", 60);
optionsService.setOption("compressImages", false);
optionsService.setOption("compressImages", "false");
}
async function createImportZip() {