diff options
| author | Bond_009 <bond.009@outlook.com> | 2023-08-22 21:14:54 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2023-08-22 21:14:54 +0200 |
| commit | 18a311d32fd6e3cdfed466017bda46566a013106 (patch) | |
| tree | 3df6585a34945c5dd02edf98a0a826050e91b955 /MediaBrowser.Controller/Entities/Video.cs | |
| parent | d92e9ae85e41fef981729f544bfd6df2c052a712 (diff) | |
== null -> is null
Diffstat (limited to 'MediaBrowser.Controller/Entities/Video.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Video.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs index 5b7abea10..9f685b7e2 100644 --- a/MediaBrowser.Controller/Entities/Video.cs +++ b/MediaBrowser.Controller/Entities/Video.cs @@ -333,7 +333,7 @@ namespace MediaBrowser.Controller.Entities protected override bool IsActiveRecording() { - return LiveTvManager.GetActiveRecordingInfo(Path) != null; + return LiveTvManager.GetActiveRecordingInfo(Path) is not null; } public override bool CanDelete() |
