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:
parent
39d94bd3ea
commit
96fa69ff6b
1
NEWS
1
NEWS
|
@ -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
|
||||
|
|
|
@ -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())
|
||||
|
|
Loading…
Reference in New Issue