24
1
Fork 0

Merge branch 'reset-dlimit-to-default' into 'master'

Reset download limit to default after uploading files

See merge request timvisee/send!30
This commit is contained in:
Tim Visée 2023-01-10 20:50:13 +00:00
commit 70a11e5300
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;
}