Skip to content

Commit

Permalink
equalsIgnoreCase title + isrc
Browse files Browse the repository at this point in the history
  • Loading branch information
devoxin committed May 7, 2024
1 parent 9258c45 commit 5d7a374
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -452,11 +452,11 @@ private void parseSimpleTag(MatroskaElement simpleTagElement) throws IOException
tagName = reader.asString(child);
} else if (child.is(MatroskaElementType.TagString)) {
// https://www.matroska.org/technical/tagging.html
if ("title".equals(tagName) && title == null) {
if ("title".equalsIgnoreCase(tagName) && title == null) {
title = reader.asString(child);
} else if ("artist".equalsIgnoreCase(tagName)) {
artist = reader.asString(child);
} else if ("isrc".equals(tagName)) {
} else if ("isrc".equalsIgnoreCase(tagName)) {
isrc = reader.asString(child);
}
}
Expand Down

0 comments on commit 5d7a374

Please sign in to comment.