fixed disk scan scheduler.

This commit is contained in:
kay.one 2013-05-12 19:52:55 -07:00
commit 687f8d9384
23 changed files with 140 additions and 142 deletions

View file

@ -9,7 +9,7 @@ namespace NzbDrone.Core.Indexers
public TSetting ImportSettingsFromJson(string json)
{
Settings = new JsonSerializer().Deserialize<TSetting>(json) ?? new TSetting();
Settings = Json.Deserialize<TSetting>(json) ?? new TSetting();
return Settings;
}