diff options
author | Max Kellermann <max@musicpd.org> | 2018-07-06 22:33:35 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-07-06 22:33:35 +0200 |
commit | 73c95d1fb2fd239fd172dbd170123ab85a511ae0 (patch) | |
tree | d4bd8671e59fbbb0b9c05c61b34e0a0e34ae8bcf /src/SongUpdate.cxx | |
parent | 2c30e1637152713f1e5473c553c8befb20c110ef (diff) |
TagFile: rename exported functions, use CamelCase
And specify whether generic tags are being scanned.
Diffstat (limited to 'src/SongUpdate.cxx')
-rw-r--r-- | src/SongUpdate.cxx | 4 |
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(); |