diff options
author | Max Kellermann <max@duempel.org> | 2016-02-22 18:00:49 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2016-02-22 18:00:49 +0100 |
commit | 7623c1c5cba95f24f2fb530d9796eceb9a95b710 (patch) | |
tree | e66472158e5740fa2868f2c59aa6c818a32f1110 /src/command/FileCommands.cxx | |
parent | de568c84c267f4b33afd6dac10b6de15a8a38a69 (diff) |
SongUpdate: move tag_scan_fallback() to tag/Generic.cxx
Diffstat (limited to 'src/command/FileCommands.cxx')
-rw-r--r-- | src/command/FileCommands.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/command/FileCommands.cxx b/src/command/FileCommands.cxx index 6f342b570..374f89fc1 100644 --- a/src/command/FileCommands.cxx +++ b/src/command/FileCommands.cxx @@ -31,8 +31,7 @@ #include "util/UriUtil.hxx" #include "util/Error.hxx" #include "tag/TagHandler.hxx" -#include "tag/ApeTag.hxx" -#include "tag/TagId3.hxx" +#include "tag/Generic.hxx" #include "TagStream.hxx" #include "TagFile.hxx" #include "storage/StorageInterface.hxx" @@ -174,8 +173,7 @@ read_file_comments(Response &r, const Path path_fs) return CommandResult::ERROR; } - tag_ape_scan2(path_fs, &print_comment_handler, &r); - tag_id3_scan(path_fs, &print_comment_handler, &r); + ScanGenericTags(path_fs, print_comment_handler, &r); return CommandResult::OK; |