aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/TV
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2023-08-22 21:14:54 +0200
committerBond_009 <bond.009@outlook.com>2023-08-22 21:14:54 +0200
commit18a311d32fd6e3cdfed466017bda46566a013106 (patch)
tree3df6585a34945c5dd02edf98a0a826050e91b955 /MediaBrowser.Controller/Entities/TV
parentd92e9ae85e41fef981729f544bfd6df2c052a712 (diff)
== null -> is null
Diffstat (limited to 'MediaBrowser.Controller/Entities/TV')
-rw-r--r--MediaBrowser.Controller/Entities/TV/Episode.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/TV/Episode.cs b/MediaBrowser.Controller/Entities/TV/Episode.cs
index 597b4cecbc..bf31508c1d 100644
--- a/MediaBrowser.Controller/Entities/TV/Episode.cs
+++ b/MediaBrowser.Controller/Entities/TV/Episode.cs
@@ -99,7 +99,7 @@ namespace MediaBrowser.Controller.Entities.TV
}
[JsonIgnore]
- public bool IsInSeasonFolder => FindParent<Season>() != null;
+ public bool IsInSeasonFolder => FindParent<Season>() is not null;
[JsonIgnore]
public string SeriesPresentationUniqueKey { get; set; }