Add verys important return to ensure Promise chain works
This commit is contained in:
parent
746debf586
commit
17131f3172
|
@ -3943,7 +3943,7 @@ jQuery.PrivateBin = (function($, sjcl, RawDeflate) {
|
||||||
|
|
||||||
// TODO: change this callback to also use Promises instead,
|
// TODO: change this callback to also use Promises instead,
|
||||||
// this here just waits
|
// this here just waits
|
||||||
Promise.all([encryptAttachmentPromise, encryptAttachmentNamePromise]).then(() => {
|
return Promise.all([encryptAttachmentPromise, encryptAttachmentNamePromise]).then(() => {
|
||||||
// run callback
|
// run callback
|
||||||
return callback();
|
return callback();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue