Skip to content

Commit

Permalink
fix: return full path in opfs list
Browse files Browse the repository at this point in the history
  • Loading branch information
crwen committed Jan 14, 2025
1 parent afe2d5a commit 786fc7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fusio/src/impls/disk/opfs/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ impl Fs for OPFS {
.await;

Ok(stream! {
for path in entries {
yield Ok(FileMeta{ path: path.into(), size: 0 })
for entry in entries {
yield Ok(FileMeta{ path: path.child(entry), size: 0 })
}
})
}
Expand Down

0 comments on commit 786fc7e

Please sign in to comment.