Skip to content

Commit

Permalink
CopyMetadataTo properly keeps year/date format [#243]
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeugma440 committed Jan 8, 2024
1 parent 80b0be0 commit aac363f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ATL/Entities/Track.cs
Original file line number Diff line number Diff line change
Expand Up @@ -699,9 +699,9 @@ public void CopyMetadataTo(Track t)
t.SeriesPart = SeriesPart;
t.LongDescription = LongDescription;
t.Album = Album;
t.isYearExplicit = isYearExplicit;
t.Year = Year;
// Year is not set directly as it actually sets Date and isYearExplicit
t.Date = Date;
t.isYearExplicit = isYearExplicit;
t.PublishingDate = PublishingDate;
t.TrackNumber = TrackNumber;
t.TrackTotal = TrackTotal;
Expand Down

0 comments on commit aac363f

Please sign in to comment.