Skip to content

Commit

Permalink
Src Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsmedley committed Sep 17, 2024
1 parent fc525e6 commit 889b57e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/objectManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ class ObjectManager {
});
let createFilePromises = [];
const queue = new PQueue({ concurrency: 50 });
for (const entry of source) {
for (let entry of source) {
entry.path = entry.path.startsWith("/") ? entry.path : `/${entry.path}`;
if (entry.content === null) {
continue;
}
Expand Down

0 comments on commit 889b57e

Please sign in to comment.