mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-15 21:05:48 -04:00
Ignore version check on non-Sqlite platforms for recommendations
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user