Commit 4b187acc authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

taglib: flawed logic

parent 90b3780c
......@@ -141,7 +141,7 @@ static void ReadMetaFromAPE( APE::Tag* tag, demux_meta_t* p_demux_meta, vlc_meta
iter = fields.find("COVER ART (FRONT)");
if( iter != fields.end()
&& !iter->second.isEmpty()
&& !iter->second.type() == APE::Item::Binary)
&& iter->second.type() == APE::Item::Binary)
{
input_attachment_t *p_attachment;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment