diff options
| author | mat <git@matdoes.dev> | 2024-12-24 04:37:55 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2024-12-24 04:37:55 +0000 |
| commit | 958848e8ed10c7b8a83c9faea1fac6eaac39b018 (patch) | |
| tree | 9e09f0994b779db00c65c9a25168818b61724e8c /azalea-client/src/local_player.rs | |
| parent | 30cbeecdfea4199b8f134c8394c677588ff9a2ce (diff) | |
| download | azalea-drasl-958848e8ed10c7b8a83c9faea1fac6eaac39b018.tar.xz | |
improve some docs and apis related to pathfinder
Diffstat (limited to 'azalea-client/src/local_player.rs')
| -rw-r--r-- | azalea-client/src/local_player.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-client/src/local_player.rs b/azalea-client/src/local_player.rs index 0a8f006d..7c9254a7 100644 --- a/azalea-client/src/local_player.rs +++ b/azalea-client/src/local_player.rs @@ -144,7 +144,7 @@ pub enum HandlePacketError { #[error(transparent)] Io(#[from] io::Error), #[error(transparent)] - Other(#[from] anyhow::Error), + Other(#[from] Box<dyn std::error::Error + Send + Sync>), #[error("{0}")] Send(#[from] mpsc::error::SendError<AzaleaEvent>), } |
