fixed diskscan

removed all stored status fields from episode
This commit is contained in:
kay.one
2013-05-12 17:36:23 -07:00
parent feb947fb74
commit cbe4be814c
32 changed files with 295 additions and 286 deletions

View File

@@ -14,7 +14,7 @@ namespace NzbDrone.Core.Datastore
{
return relationshipBuilder.For(portalExpression.GetMemberName())
.LazyLoad((db, parent) => db.Query<TChild>()
.Single(c => c.Id == childIdSelector(parent)));
.SingleOrDefault(c => c.Id == childIdSelector(parent)));
}