From f9a6db40b8861b5190b632a1a1fa474fa020e0f5 Mon Sep 17 00:00:00 2001 From: William Brockhus Date: Wed, 4 Oct 2023 14:26:08 +1100 Subject: [PATCH] Fixed: Ignore timezone when comparing tag dates --- src/NzbDrone.Core/MediaFiles/AudioTag.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/MediaFiles/AudioTag.cs b/src/NzbDrone.Core/MediaFiles/AudioTag.cs index e45e43ea5..eb40e30bd 100644 --- a/src/NzbDrone.Core/MediaFiles/AudioTag.cs +++ b/src/NzbDrone.Core/MediaFiles/AudioTag.cs @@ -471,14 +471,14 @@ namespace NzbDrone.Core.MediaFiles output.Add("Media Format", Tuple.Create(Media, other.Media)); } - if (Date != other.Date) + if (Date?.Date != other.Date?.Date) { var oldValue = Date.HasValue ? Date.Value.ToString("yyyy-MM-dd") : null; var newValue = other.Date.HasValue ? other.Date.Value.ToString("yyyy-MM-dd") : null; output.Add("Date", Tuple.Create(oldValue, newValue)); } - if (OriginalReleaseDate != other.OriginalReleaseDate) + if (OriginalReleaseDate?.Date != other.OriginalReleaseDate?.Date) { // Id3v2.3 tags can only store the year, not the full date if (OriginalReleaseDate.HasValue &&