mirror of
https://github.com/Radarr/Radarr.git
synced 2025-04-24 14:37:07 -04: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 @@ namespace NzbDrone.Core.Movies
|
|||
{
|
||||
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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue