diff --git a/src/components/tags/vorbis_tag.rs b/src/components/tags/vorbis_tag.rs index b77ade5a..c71db0fc 100644 --- a/src/components/tags/vorbis_tag.rs +++ b/src/components/tags/vorbis_tag.rs @@ -142,19 +142,9 @@ impl TryFrom for VorbisTag { fn try_from(inp: OGGTags) -> Result { let mut tag = Self::default(); - let read_pictures = inp.1; + let pictures = inp.1; let comments = inp.2; - let mut pictures = Vec::new(); - - if !read_pictures.is_empty() { - for pic in read_pictures { - if let Ok(pic) = Picture::from_apic_bytes(&pic.as_bytes()) { - pictures.push(pic) - } - } - } - tag.inner = VorbisInnerTag { format: Some(inp.3), vendor: inp.0,