summaryrefslogtreecommitdiff
path: root/src/SongUpdate.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/SongUpdate.cxx')
-rw-r--r--src/SongUpdate.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SongUpdate.cxx b/src/SongUpdate.cxx
index 9a0e2cd01..e43c45961 100644
--- a/src/SongUpdate.cxx
+++ b/src/SongUpdate.cxx
@@ -85,7 +85,7 @@ Song::UpdateFile(Storage &storage) noexcept
if (!tag_stream_scan(absolute_uri.c_str(), tag_builder))
return false;
} else {
- if (!tag_file_scan(path_fs, tag_builder))
+ if (!ScanFileTagsWithGeneric(path_fs, tag_builder))
return false;
}
@@ -149,7 +149,7 @@ DetachedSong::LoadFile(Path path) noexcept
return false;
TagBuilder tag_builder;
- if (!tag_file_scan(path, tag_builder))
+ if (!ScanFileTagsWithGeneric(path, tag_builder))
return false;
mtime = fi.GetModificationTime();