mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-03-12 04:35:27 -07:00
fix(jellyfin): 🐛 Fixed an issue where Jellyfin content was showing the Play on Emby button
#4542
This commit is contained in:
parent
a8ba2f3544
commit
18b167d16a
src
Ombi.Core/Rule/Rules/Search
Ombi.Schedule/Jobs/Jellyfin
@ -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;
|
||||
}
|
||||
}
|
||||
|
@ -33,11 +33,9 @@ using Microsoft.AspNetCore.SignalR;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Ombi.Core;
|
||||
using Ombi.Core.Notifications;
|
||||
using Ombi.Helpers;
|
||||
using Ombi.Hubs;
|
||||
using Ombi.Notifications.Models;
|
||||
using Ombi.Schedule.Jobs.Ombi;
|
||||
using Ombi.Store.Entities;
|
||||
using Ombi.Store.Repository;
|
||||
using Ombi.Store.Repository.Requests;
|
||||
|
Loading…
x
Reference in New Issue
Block a user