24
1
Fork 0

hardcode default dlimits to 100

This commit is contained in:
Romain H 2021-05-30 00:52:49 +02:00 committed by Romain Hv
parent 00925a2974
commit cdcc6a69b8
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ export default class Archive {
this.files = Array.from(files);
this.defaultTimeLimit = defaultTimeLimit;
this.timeLimit = defaultTimeLimit;
this.dlimit = 1;
this.dlimit = 100;
this.password = null;
}
@ -76,7 +76,7 @@ export default class Archive {
clear() {
this.files = [];
this.dlimit = 1;
this.dlimit = 100;
this.timeLimit = this.defaultTimeLimit;
this.password = null;
}