diff options
author | Alexey Yakovenko <waker@users.sourceforge.net> | 2014-06-27 19:47:39 +0200 |
---|---|---|
committer | Alexey Yakovenko <waker@users.sourceforge.net> | 2014-06-27 19:47:39 +0200 |
commit | 5267c9b2c585417566a4e28da23e81548000d2d7 (patch) | |
tree | 63f92671e9680d2857c31aaad3da8415cfb01eb8 /plugins | |
parent | a42a3a6bc620a8e4bc86d93a8ed28e75c00eae1c (diff) |
artwork: new id3v2 APIC handling fix
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/artwork/artwork.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/artwork/artwork.c b/plugins/artwork/artwork.c index 612e4f1e..41963292 100644 --- a/plugins/artwork/artwork.c +++ b/plugins/artwork/artwork.c @@ -1002,8 +1002,7 @@ fetcher_thread (void *none) continue; } uint8_t *data = f->data; - if (tag.version[0] == 4) { - // skip size + if (f->flags[1] == 3) { data += 4; } uint8_t *end = f->data + f->size; |