mirror of
https://github.com/nextcloud/passman.git
synced 2025-02-26 00:14:44 +08:00
FIX #264 by @OS3DrNick
Seems that I forgot to check if there is no need to export files on that callback nightmare
This commit is contained in:
parent
5ffe28d069
commit
4d82e7db7a
1 changed files with 6 additions and 1 deletions
|
@ -98,6 +98,11 @@ if (!window['PassmanExporter']) {
|
|||
}).bind(this));
|
||||
}
|
||||
}
|
||||
|
||||
// We have finished downloading everything, so let's hand over job to somewhere else!
|
||||
if (this.parent.total === 0) {
|
||||
this.call_then(this.parent.cred);
|
||||
}
|
||||
}, t);
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue