Don't try parsing an internal format for OldDetails

This commit is contained in:
asonix 2023-08-30 20:55:38 -05:00
parent 329ce1a7b0
commit 721d9e1706
1 changed files with 4 additions and 9 deletions

View File

@ -80,8 +80,6 @@ pub(crate) struct OldDetails {
frames: Option<u32>,
content_type: crate::serde_str::Serde<mime::Mime>,
created_at: MaybeHumanDate,
#[serde(skip_serializing_if = "Option::is_none")]
format: Option<crate::formats::InternalFormat>,
}
impl OldDetails {
@ -92,15 +90,12 @@ impl OldDetails {
frames,
content_type,
created_at,
format,
} = self;
let format = format.or_else(|| {
crate::formats::InternalFormat::maybe_from_media_type(
let format = crate::formats::InternalFormat::maybe_from_media_type(
&content_type,
self.frames.is_some(),
)
})?;
)?;
Some(Details::from_parts_full(
format,