Skip to content

Commit

Permalink
Merge pull request #97 from Ashampoo/develop
Browse files Browse the repository at this point in the history
hotfix
  • Loading branch information
tjorvenK authored Sep 30, 2024
2 parents 42b0d7a + 02e96f8 commit ac17f2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class QtFormatProvider : IFormatProvider<QtFormat>
/// <inheritdoc />
public bool SupportsFileName(string fileName)
{
return SupportedFileExtensions.Any(ext => ext.EndsWith(ext, StringComparison.OrdinalIgnoreCase));
return SupportedFileExtensions.Any(ext => ext.EndsWith(fileName, StringComparison.OrdinalIgnoreCase));
}

/// <inheritdoc />
Expand Down

0 comments on commit ac17f2c

Please sign in to comment.