reformat
feat/vaults
Tomáš Mládek 2022-04-15 22:43:40 +02:00
parent eec4f96293
commit 459eede174
No known key found for this signature in database
GPG Key ID: 65E225C8B3E2ED8A
2 changed files with 3 additions and 2 deletions

View File

@ -111,7 +111,8 @@ pub fn extract(
#[cfg(feature = "extractors-audio")]
{
entry_count += audio::ID3Extractor.insert_info(address, connection, job_container.clone())?;
entry_count +=
audio::ID3Extractor.insert_info(address, connection, job_container.clone())?;
}
#[cfg(feature = "extractors-photo")]

View File

@ -34,7 +34,7 @@ impl<'a> Previewable for ImagePath<'a> {
Some(3) => image.rotate180(),
Some(6) => image.rotate90(),
Some(8) => image.rotate270(),
_ => image
_ => image,
};
let (w, h) = image.dimensions();
if cmp::max(w, h) > 1024 {