mirror of
https://git.asonix.dog/asonix/pict-rs.git
synced 2024-11-28 12:31:00 +00:00
Clippy
This commit is contained in:
parent
27c4fdf2c8
commit
9871ad2ee0
1 changed files with 3 additions and 3 deletions
|
@ -1688,7 +1688,7 @@ where
|
|||
"Error generating details for motion file for hash {}",
|
||||
hex::encode(&hash)
|
||||
);
|
||||
return Err(e.into());
|
||||
return Err(e);
|
||||
}
|
||||
Err(MigrateError::From(e)) => {
|
||||
tracing::warn!("Error migrating motion file from old store");
|
||||
|
@ -1739,7 +1739,7 @@ where
|
|||
"Error generating details for variant file for hash {}",
|
||||
hex::encode(&hash)
|
||||
);
|
||||
return Err(e.into());
|
||||
return Err(e);
|
||||
}
|
||||
Err(MigrateError::From(e)) => {
|
||||
tracing::warn!("Error migrating variant file from old store");
|
||||
|
@ -1766,7 +1766,7 @@ where
|
|||
"Error generating details for original file for hash {}",
|
||||
hex::encode(&hash)
|
||||
);
|
||||
return Err(e.into());
|
||||
return Err(e);
|
||||
}
|
||||
Err(MigrateError::From(e)) => {
|
||||
tracing::warn!("Error migrating original file from old store");
|
||||
|
|
Loading…
Reference in a new issue