remove extra brackets from the meta info

This commit is contained in:
yggverse 2025-06-30 16:13:06 +03:00
parent aa6d8cc6b5
commit 0d79004d8d

View file

@ -200,7 +200,8 @@ impl Public {
}
// @TODO modified, accessed, created etc.
if !a.is_empty() {
l.push_str(&format!(" ({})", a.join(", ")));
l.push(' ');
l.push_str(&a.join(", "));
}
l
})
@ -240,7 +241,8 @@ impl Public {
a.push(b(file.meta.size()))
}
if !a.is_empty() {
l.push_str(&format!(" ({})", a.join(", ")));
l.push(' ');
l.push_str(&a.join(", "));
}
l
})