mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2025-01-12 04:25:49 +00:00
cargo fmt
This commit is contained in:
parent
7f153c6430
commit
de58e41ed4
1 changed files with 4 additions and 1 deletions
|
@ -653,7 +653,10 @@ where
|
||||||
}
|
}
|
||||||
|
|
||||||
let Some(main_identifier) = repo.identifier::<FileId>(hash.clone()).await? else {
|
let Some(main_identifier) = repo.identifier::<FileId>(hash.clone()).await? else {
|
||||||
tracing::warn!("Missing identifier for hash {}, queueing cleanup", hex::encode(&hash));
|
tracing::warn!(
|
||||||
|
"Missing identifier for hash {}, queueing cleanup",
|
||||||
|
hex::encode(&hash)
|
||||||
|
);
|
||||||
crate::queue::cleanup_hash(repo, hash.clone()).await?;
|
crate::queue::cleanup_hash(repo, hash.clone()).await?;
|
||||||
return Err(RepoError::Missing("hash -> identifier").into());
|
return Err(RepoError::Missing("hash -> identifier").into());
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue