ID3v2: Always pass correct FrameFactory from File to Tag

This commit is contained in:
Urs Fleisch
2023-11-23 16:41:46 +01:00
parent b993e70cf4
commit 59166f6757
8 changed files with 21 additions and 10 deletions
+1 -1
View File
@@ -297,7 +297,7 @@ bool MPEG::File::save(int tags, StripTags strip, ID3v2::Version version, Duplica
ID3v2::Tag *MPEG::File::ID3v2Tag(bool create)
{
return d->tag.access<ID3v2::Tag>(ID3v2Index, create);
return d->tag.access<ID3v2::Tag>(ID3v2Index, create, d->ID3v2FrameFactory);
}
ID3v1::Tag *MPEG::File::ID3v1Tag(bool create)