1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-26 22:46:53 -04:00

New: Loads of Backend Updates to Clients and Indexers

This commit is contained in:
Qstick
2019-06-13 23:54:25 -04:00
parent c48838e5b6
commit 8a9e2dc90d
345 changed files with 5859 additions and 2669 deletions
@@ -21,7 +21,7 @@ namespace NzbDrone.Core.Configuration
public Config Get(string key)
{
return Query(q => q.Where(c => c.Key == key).SingleOrDefault());
return Query.Where(c => c.Key == key).SingleOrDefault();
}
public Config Upsert(string key, string value)
@@ -38,4 +38,4 @@ namespace NzbDrone.Core.Configuration
return Update(dbValue);
}
}
}
}