Skip to content

Commit

Permalink
Use the default frame factory when it's necessary to parse ID3v2 tags…
Browse files Browse the repository at this point in the history
  • Loading branch information
net147 authored and lalinsky committed Aug 6, 2011
1 parent 028f831 commit 7cc36db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taglib/ape/apeproperties.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ long APE::Properties::findDescriptor()
long ID3v2OriginalSize = 0;
bool hasID3v2 = false;
if(ID3v2Location >= 0) {
ID3v2::Tag tag(d->file, ID3v2Location, 0);
ID3v2::Tag tag(d->file, ID3v2Location);
ID3v2OriginalSize = tag.header()->completeTagSize();
if(tag.header()->tagSize() > 0)
hasID3v2 = true;
Expand Down

0 comments on commit 7cc36db

Please sign in to comment.