diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-07-12 23:53:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-12 23:53:52 +0200 |
| commit | b20977dc25a6aa8d7e5fe544fbc7400611a6939b (patch) | |
| tree | 078ef9ec54b3afe3c30b719c98a81af8ea008690 /Emby.Server.Implementations/Library/LibraryManager.cs | |
| parent | 34fba1a78750dc99f6b9755c5a0dc4a34bf828d7 (diff) | |
| parent | 915141f196d6ec20f3f0a398d9b328f25ae71241 (diff) | |
Merge pull request #6289 from Bond-009/warn33
Fix some warnings
Diffstat (limited to 'Emby.Server.Implementations/Library/LibraryManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Library/LibraryManager.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs index d80637332..13fb8b2fd 100644 --- a/Emby.Server.Implementations/Library/LibraryManager.cs +++ b/Emby.Server.Implementations/Library/LibraryManager.cs @@ -2540,9 +2540,10 @@ namespace Emby.Server.Implementations.Library { episodeInfo = resolver.Resolve(episode.Path, isFolder, null, null, isAbsoluteNaming); // Resolve from parent folder if it's not the Season folder - if (episodeInfo == null && episode.Parent.GetType() == typeof(Folder)) + var parent = episode.GetParent(); + if (episodeInfo == null && parent.GetType() == typeof(Folder)) { - episodeInfo = resolver.Resolve(episode.Parent.Path, true, null, null, isAbsoluteNaming); + episodeInfo = resolver.Resolve(parent.Path, true, null, null, isAbsoluteNaming); if (episodeInfo != null) { // add the container |
