mirror of
https://github.com/rustfs/rustfs.git
synced 2026-01-17 01:30:33 +00:00
fix: The issue of multi-level objects created in Windows not being displayed has been fixed (#661) (#723)
This commit is contained in:
@@ -952,6 +952,12 @@ async fn gather_results(
|
||||
let mut recv = recv;
|
||||
let mut entries = Vec::new();
|
||||
while let Some(mut entry) = recv.recv().await {
|
||||
#[cfg(windows)]
|
||||
{
|
||||
// normalize windows path separator
|
||||
entry.name = entry.name.replace("\\", "/");
|
||||
}
|
||||
|
||||
if returned {
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user