mirror of
https://github.com/Radarr/Radarr
synced 2026-04-24 00:44:18 +02:00
parent
1b36b512d7
commit
c892b827af
1 changed files with 5 additions and 0 deletions
|
|
@ -315,6 +315,11 @@ public List<int> GetRecommendations()
|
|||
{
|
||||
var recommendations = new List<int>();
|
||||
|
||||
if (_database.Version < new Version("3.9.0"))
|
||||
{
|
||||
return recommendations;
|
||||
}
|
||||
|
||||
using (var conn = _database.OpenConnection())
|
||||
{
|
||||
recommendations = conn.Query<int>(@"
|
||||
|
|
|
|||
Loading…
Reference in a new issue