Fix missing callback

This commit is contained in:
yflory 2020-01-22 15:41:17 +01:00
parent 1067389e37
commit ad94e97444
1 changed files with 2 additions and 1 deletions

View File

@ -855,7 +855,8 @@ define([
Util.fetch(data.src, function (err, u8) {
if (err) {
APP.loadingImage--;
return void console.error(err);
console.error(err);
return void callback("");
}
try {
debug("Decrypt with key " + data.key);