mirror of
https://github.com/YGGverse/nexy.git
synced 2026-03-31 09:15:28 +00:00
remove extra brackets from the meta info
This commit is contained in:
parent
aa6d8cc6b5
commit
0d79004d8d
1 changed files with 4 additions and 2 deletions
|
|
@ -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
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue