Ignore version check on non-Sqlite platforms for recommendations

This commit is contained in:
Bogdan 2025-04-12 09:46:38 +03:00
parent 2b8ca4746a
commit fb8f8f4dd3

View file

@ -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;
}