From 733b4ba73a439aae2c2fe03c6084e2cbdfb22a39 Mon Sep 17 00:00:00 2001 From: Shadowghost Date: Wed, 22 Jul 2026 08:01:59 +0200 Subject: Prefer null checks over HasValue --- MediaBrowser.Controller/Entities/BaseItem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'MediaBrowser.Controller') diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index cc2a425a4d..41f7e796e8 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -1563,7 +1563,7 @@ namespace MediaBrowser.Controller.Entities // year/premiere date when the extra doesn't have one, so it stays consistent with the // media it belongs to. Setting it before the refresh means the media info provider // won't overwrite it from the file creation date. - if (!i.ProductionYear.HasValue && item.ProductionYear.HasValue) + if (i.ProductionYear is null && item.ProductionYear is not null) { i.ProductionYear = item.ProductionYear; i.PremiereDate ??= item.PremiereDate; -- cgit v1.2.3