SongUpdate: accept files without metadata

If the file was recognized by a decoder plugin, accept it - don't
require metadata.
This commit is contained in:
mobidyc 2013-12-10 19:34:35 +01:00 committed by Max Kellermann
parent 39d94bd3ea
commit 96fa69ff6b
2 changed files with 2 additions and 2 deletions

1
NEWS
View File

@ -4,6 +4,7 @@ ver 0.18.6 (not yet released)
* output
- openal: fix build failure on Mac OS X
- osx: fix build failure
* accept files without metadata
ver 0.18.5 (2013/11/23)
* configuration

View File

@ -95,8 +95,7 @@ Song::UpdateFile()
TagBuilder tag_builder;
if (!tag_file_scan(path_fs,
&full_tag_handler, &tag_builder) ||
!tag_builder.IsDefined())
&full_tag_handler, &tag_builder))
return false;
if (tag_builder.IsEmpty())