Skip to content

Commit

Permalink
Reading the file ComicInfo.xml will now ignore the text case.
Browse files Browse the repository at this point in the history
  • Loading branch information
maforget committed Sep 16, 2024
1 parent aed1558 commit 9745855
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ private byte[] GetFileData(string source, string file)
{
PropVariant value = default(PropVariant);
archive.GetProperty(i, ItemPropId.kpidPath, ref value);
if (file.Equals(value.GetObject().ToString()))
if (file.Equals(value.GetObject().ToString(), StringComparison.OrdinalIgnoreCase))
{
return GetFileData(archive, i);
}
Expand Down

0 comments on commit 9745855

Please sign in to comment.