Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Dec 17, 2024
1 parent 6a7d00b commit 5be6737
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/packages.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function store_stream_file(stream, key, filename, metadata){
/* Clear possible orphaned chunks, then reject */
var p1 = chunks.deleteMany({files_id: key});
var p2 = bucket.delete(key);
promise.allSettled([p1, p2]).then(function(e){
Promise.allSettled([p1, p2]).then(function(e){
reject("Error in openUploadStreamWithId(): " + err);
});
});
Expand Down

0 comments on commit 5be6737

Please sign in to comment.