diff options
| author | Patrick Barron <18354464+barronpm@users.noreply.github.com> | 2020-07-23 23:50:12 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-23 23:50:12 +0000 |
| commit | 3d69cea1c9724210c31467bde5204c2649a23992 (patch) | |
| tree | a73e7b774b0f5a7e074dedbc62ba4bf555bd3222 /Emby.Server.Implementations/Library/CoreResolutionIgnoreRule.cs | |
| parent | 5f67ba4d7087d7a0cad37fc9e2db212340076d12 (diff) | |
| parent | 845ee21ddce8ed91d8c3c1463d0d7a06bb769635 (diff) | |
Merge branch 'master' into displaypreferences-efcore
Diffstat (limited to 'Emby.Server.Implementations/Library/CoreResolutionIgnoreRule.cs')
| -rw-r--r-- | Emby.Server.Implementations/Library/CoreResolutionIgnoreRule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Library/CoreResolutionIgnoreRule.cs b/Emby.Server.Implementations/Library/CoreResolutionIgnoreRule.cs index 77b2c0a69..3380e29d4 100644 --- a/Emby.Server.Implementations/Library/CoreResolutionIgnoreRule.cs +++ b/Emby.Server.Implementations/Library/CoreResolutionIgnoreRule.cs @@ -77,7 +77,7 @@ namespace Emby.Server.Implementations.Library if (parent != null) { // Don't resolve these into audio files - if (string.Equals(Path.GetFileNameWithoutExtension(filename), BaseItem.ThemeSongFilename) + if (string.Equals(Path.GetFileNameWithoutExtension(filename), BaseItem.ThemeSongFilename, StringComparison.Ordinal) && _libraryManager.IsAudioFile(filename)) { return true; |
