diff options
Diffstat (limited to 'src/SongUpdate.cxx')
-rw-r--r-- | src/SongUpdate.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/SongUpdate.cxx b/src/SongUpdate.cxx index 46582bf4b..412630d97 100644 --- a/src/SongUpdate.cxx +++ b/src/SongUpdate.cxx @@ -92,8 +92,7 @@ Song::UpdateFile(Storage &storage) if (path_fs.IsNull()) { const auto absolute_uri = storage.MapUTF8(relative_uri.c_str()); - if (!tag_stream_scan(absolute_uri.c_str(), - full_tag_handler, &tag_builder)) + if (!tag_stream_scan(absolute_uri.c_str(), tag_builder)) return false; } else { if (!tag_file_scan(path_fs, tag_builder)) @@ -165,8 +164,7 @@ DetachedSong::Update() return LoadFile(path_fs); } else if (IsRemote()) { TagBuilder tag_builder; - if (!tag_stream_scan(uri.c_str(), full_tag_handler, - &tag_builder)) + if (!tag_stream_scan(uri.c_str(), tag_builder)) return false; mtime = 0; |