This commit is contained in:
sxyazi 2025-12-01 22:22:52 +08:00
parent 32f65362e3
commit b85dfe22b2
No known key found for this signature in database

View file

@ -93,7 +93,6 @@ impl<'a> Provider for Sftp<'a> {
P: AsPath, P: AsPath,
A: Into<yazi_fs::provider::Attrs>, A: Into<yazi_fs::provider::Attrs>,
{ {
let from = self.url.to_owned();
let to = UrlBuf::Sftp { let to = UrlBuf::Sftp {
loc: LocBuf::<typed_path::UnixPathBuf>::saturated( loc: LocBuf::<typed_path::UnixPathBuf>::saturated(
to.as_path().to_unix_owned()?, to.as_path().to_unix_owned()?,
@ -101,6 +100,7 @@ impl<'a> Provider for Sftp<'a> {
), ),
domain: self.name.intern(), domain: self.name.intern(),
}; };
let from = self.url.to_owned();
Ok(crate::provider::copy_with_progress_impl(from, to, attrs.into())) Ok(crate::provider::copy_with_progress_impl(from, to, attrs.into()))
} }