Fixed broken build

This commit is contained in:
kay.one 2011-06-21 18:22:52 -07:00
commit f6ccb5e17c
2 changed files with 5 additions and 4 deletions

View file

@ -135,10 +135,11 @@ namespace NzbDrone.Core.Providers
return series;
}
//This will catch InvalidOperationExceptions that may be thrown for GetSeries due to the series being in SceneMapping, but not in the users Database
catch (InvalidOperationException ex)
catch (InvalidOperationException)
{
Logger.DebugException(ex.Message, ex);
//This will catch InvalidOperationExceptions(Sequence contains no element)
//that may be thrown for GetSeries due to the series being in SceneMapping, but not in the users Database
return null;
}
}