mirror of
https://github.com/Radarr/Radarr
synced 2025-12-06 16:32:36 +01:00
Ignore version check on non-Sqlite platforms for recommendations
This commit is contained in:
parent
2b8ca4746a
commit
fb8f8f4dd3
1 changed files with 1 additions and 1 deletions
|
|
@ -327,7 +327,7 @@ public List<int> GetRecommendations()
|
||||||
{
|
{
|
||||||
var recommendations = new List<int>();
|
var recommendations = new List<int>();
|
||||||
|
|
||||||
if (_database.Version < new Version("3.9.0"))
|
if (_database.DatabaseType == DatabaseType.SQLite && _database.Version < new Version("3.9.0"))
|
||||||
{
|
{
|
||||||
return recommendations;
|
return recommendations;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue