Fixed: Temp fix for errors during import. Catch and report error.

Fixes #204

Co-Authored-By: Josh Jones <vertigo235@users.noreply.github.com>
pull/250/head
Qstick 6 years ago
parent 221c670bf9
commit 9d7c6bc961

@ -62,10 +62,20 @@ namespace NzbDrone.Core.Music
foreach (var s in newArtists)
{
// TODO: Verify if adding skyhook data will be slow
var artist = AddSkyhookData(s);
artist = SetPropertiesAndValidate(artist);
artist.Added = added;
artistsToAdd.Add(artist);
try
{
var artist = AddSkyhookData(s);
artist = SetPropertiesAndValidate(artist);
artist.Added = added;
artistsToAdd.Add(artist);
}
catch (Exception ex)
{
// Catch Import Errors for now until we get things fixed up
_logger.Debug("Failed to import id: {1} - {2}", s.ForeignArtistId, s.Name);
_logger.Error(ex, ex.Message);
}
}
return _artistService.AddArtists(artistsToAdd);

Loading…
Cancel
Save