ignore WithReadDb() calls in mono

This commit is contained in:
kay.one 2013-02-17 08:23:53 -08:00
commit 177f88303c
5 changed files with 8 additions and 12 deletions

View file

@ -261,7 +261,7 @@ namespace NzbDrone.Core.Jobs
return;
}
var settings = All().Where(j => j.TypeName == queueItem.JobType.ToString()).Single();
var settings = All().Single(j => j.TypeName == queueItem.JobType.ToString());
using (_notification = new ProgressNotification(jobImplementation.Name))
{