Bug fix
This commit is contained in:
parent
3e87a376b9
commit
5c51ddc49e
1 changed files with 2 additions and 1 deletions
|
@ -30,7 +30,8 @@ pub struct FileOperation {
|
||||||
|
|
||||||
impl FileOperation {
|
impl FileOperation {
|
||||||
fn referenceable_name(&self) -> &str {
|
fn referenceable_name(&self) -> &str {
|
||||||
if let WriteDirectory(_) = self.basic {
|
if let WriteDirectory(_) = self.basic && !self.name.ends_with('\\')
|
||||||
|
&& !self.name.ends_with('/') {
|
||||||
self.name + "/"
|
self.name + "/"
|
||||||
} else {
|
} else {
|
||||||
self.name
|
self.name
|
||||||
|
|
Loading…
Add table
Reference in a new issue