Bug fix
This commit is contained in:
parent
c31d85930b
commit
7bb1d9d190
1 changed files with 3 additions and 4 deletions
|
@ -33,10 +33,9 @@ pub struct FileOperation {
|
|||
|
||||
impl FileOperation {
|
||||
fn referenceable_name(&self) -> String {
|
||||
if let BasicFileOperation::WriteDirectory(_) = self.basic {
|
||||
if !self.name.ends_with('\\') && !self.name.ends_with('/') {
|
||||
if let BasicFileOperation::WriteDirectory(_) = self.basic
|
||||
&& !self.name.ends_with('\\') && !self.name.ends_with('/') {
|
||||
return self.name.to_owned() + "/";
|
||||
}
|
||||
} else {
|
||||
self.name.to_owned()
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue