Fix Crash due to ForeignArtistId not being in DB for TrackFile Table

Fix Crash due to ForeignArtistId not being in DB for TrackFile Table
pull/7/head
Qstick 7 years ago
parent ee90d8021a
commit c6ac0878a7

@ -12,8 +12,8 @@ namespace NzbDrone.Core.MediaFiles
{ {
public class TrackFile : ModelBase public class TrackFile : ModelBase
{ {
public string ForeignTrackId { get; set; } //public string ForeignTrackId { get; set; }
public string ForeignArtistId { get; set; } //public string ForeignArtistId { get; set; }
public int AlbumId { get; set; } public int AlbumId { get; set; }
public int ArtistId { get; set; } public int ArtistId { get; set; }
public string RelativePath { get; set; } public string RelativePath { get; set; }

@ -73,7 +73,7 @@ namespace NzbDrone.Core.MediaFiles.TrackImport
var trackFile = new TrackFile(); var trackFile = new TrackFile();
trackFile.DateAdded = DateTime.UtcNow; trackFile.DateAdded = DateTime.UtcNow;
trackFile.ForeignArtistId = localTrack.Artist.ForeignArtistId; trackFile.ArtistId = localTrack.Artist.Id;
trackFile.Path = localTrack.Path.CleanFilePath(); trackFile.Path = localTrack.Path.CleanFilePath();
trackFile.Size = _diskProvider.GetFileSize(localTrack.Path); trackFile.Size = _diskProvider.GetFileSize(localTrack.Path);
trackFile.Quality = localTrack.Quality; trackFile.Quality = localTrack.Quality;

Loading…
Cancel
Save