24
1
Fork 0

Reset download limit to default after uplaoding files

This commit is contained in:
Jun Omae 2023-01-06 17:42:45 +09:00
parent 309c7d63ac
commit f62a99882d
1 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@ export default class Archive {
constructor(files = [], defaultTimeLimit = 86400, defaultDownloadLimit = 1) {
this.files = Array.from(files);
this.defaultTimeLimit = defaultTimeLimit;
this.defaultDownloadLimit = defaultDownloadLimit;
this.timeLimit = defaultTimeLimit;
this.dlimit = defaultDownloadLimit;
this.password = null;
@ -76,7 +77,7 @@ export default class Archive {
clear() {
this.files = [];
this.dlimit = 1;
this.dlimit = this.defaultDownloadLimit;
this.timeLimit = this.defaultTimeLimit;
this.password = null;
}