fixed checkFiles bug
This commit is contained in:
parent
5263839731
commit
fb8e0afd85
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ export default function(state, emitter) {
|
|||
}
|
||||
|
||||
async function checkFiles() {
|
||||
const files = state.storage.files;
|
||||
const files = state.storage.files.slice();
|
||||
let rerender = false;
|
||||
for (const file of files) {
|
||||
const oldLimit = file.dlimit;
|
||||
|
|
Loading…
Reference in a new issue