diff options
Diffstat (limited to 'src/tags.cpp')
-rw-r--r-- | src/tags.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tags.cpp b/src/tags.cpp index 3d8feef6..3610f80c 100644 --- a/src/tags.cpp +++ b/src/tags.cpp @@ -145,7 +145,7 @@ void writeID3v2Tags(const MPD::MutableSong &s, TagLib::ID3v2::Tag *tag) auto frame = new TagLib::ID3v2::CommentsFrame(TagLib::String::UTF8); // apparently there can't be multiple comments, // so if there is more than one, join them. - frame->setText(join(list, TagLib::String(Config.tags_separator, TagLib::String::UTF8))); + frame->setText(join(list, TagLib::String(MPD::Song::TagsSeparator, TagLib::String::UTF8))); tag->addFrame(frame); } else |