diff options
Diffstat (limited to 'apps/plugins/properties.c')
-rw-r--r-- | apps/plugins/properties.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/plugins/properties.c b/apps/plugins/properties.c index ef9dc4c7f7..ce3c03694c 100644 --- a/apps/plugins/properties.c +++ b/apps/plugins/properties.c @@ -375,10 +375,8 @@ static bool determine_file_or_dir(void) #ifdef HAVE_TAGCACHE bool mul_id3_add(const char *file_name) { - if (!file_name) + if (!file_name || rb->mp3info(&id3, file_name)) skipped_count++; - else if (rb->mp3info(&id3, file_name)) - return false; else { collect_id3(&id3, mul_id3_count == 0); |