fix(jellyfin): 🐛 Fixed an issue where Jellyfin content was showing the Play on Emby button

#4542
This commit is contained in:
tidusjar 2022-03-10 15:52:10 +00:00
parent a8ba2f3544
commit 18b167d16a
2 changed files with 2 additions and 4 deletions

View file

@ -92,14 +92,14 @@ namespace Ombi.Core.Rule.Rules.Search
else
{
obj.Available = true;
obj.EmbyUrl = item.Url;
obj.JellyfinUrl = item.Url;
obj.Quality = item.Quality;
}
if (item.Quality.HasValue())
{
obj.Available = true;
obj.EmbyUrl = item.Url;
obj.JellyfinUrl = item.Url;
obj.Quality = item.Quality;
}
}