mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-08 17:06:38 +00:00
Fixed: Musicbrainz track id tag read incorrectly
This commit is contained in:
@@ -17,6 +17,7 @@ namespace NzbDrone.Core.Parser.Model
|
||||
public ArtistTitleInfo ArtistTitleInfo { get; set; }
|
||||
public string ArtistMBId { get; set; }
|
||||
public string AlbumMBId { get; set; }
|
||||
public string ReleaseMBId { get; set; }
|
||||
public string TrackMBId { get; set; }
|
||||
public int DiscNumber { get; set; }
|
||||
public QualityModel Quality { get; set; }
|
||||
|
||||
@@ -634,9 +634,9 @@ namespace NzbDrone.Core.Parser
|
||||
AlbumTitle = file.Tag.Album,
|
||||
ArtistTitle = artist,
|
||||
ArtistMBId = file.Tag.MusicBrainzArtistId,
|
||||
AlbumMBId = file.Tag.MusicBrainzReleaseId,
|
||||
ReleaseMBId = file.Tag.MusicBrainzReleaseId,
|
||||
DiscNumber = discNumber,
|
||||
TrackMBId = file.Tag.MusicBrainzReleaseType,
|
||||
TrackMBId = file.Tag.MusicBrainzTrackId,
|
||||
TrackNumbers = temp,
|
||||
ArtistTitleInfo = artistTitleInfo,
|
||||
Title = trackTitle
|
||||
|
||||
Reference in New Issue
Block a user