Skip to content

Commit

Permalink
fix: android building error caused by trash crate (#1393)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xerxes-2 authored Aug 2, 2024
1 parent 7a380c2 commit 9d1fab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yazi-scheduler/src/file/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ impl File {
{
trash::delete(&task.target)?;
}
Ok::<_, trash::Error>(())
Ok::<_, anyhow::Error>(())
})
.await??;
self.prog.send(TaskProg::Adv(task.id, 1, task.length))?;
Expand Down

0 comments on commit 9d1fab8

Please sign in to comment.