From 382f48d9ff5afe9904f9400a05e8f3a45ad995be Mon Sep 17 00:00:00 2001 From: Romain H Date: Sun, 30 May 2021 00:52:49 +0200 Subject: [PATCH] hardcode default dlimits to 100 --- app/archive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/archive.js b/app/archive.js index 340164e8..b5148ada 100644 --- a/app/archive.js +++ b/app/archive.js @@ -76,7 +76,7 @@ export default class Archive { clear() { this.files = []; - this.dlimit = 1; + this.dlimit = 100; this.timeLimit = this.defaultTimeLimit; this.password = null; }