Skip to content

Commit

Permalink
Fix asynch bug when caching is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
cmoesel committed Apr 21, 2020
1 parent 84a779f commit 7ef8e6f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/download-vsac.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,9 @@ function writeFile(file, data, caching=true) {
resolve(file);
}
});
} else {
resolve();
}
resolve();
});
}

Expand Down

0 comments on commit 7ef8e6f

Please sign in to comment.