mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-13 16:52:56 -07:00
fix(requests): 🐛 Fixed the issue where Approving a 4K Request wouldn't send it to the correct 4K radarr instance
#4509
This commit is contained in:
parent
90171f9bb2
commit
87cb9903db
3 changed files with 8 additions and 3 deletions
|
@ -640,7 +640,7 @@ namespace Ombi.Core.Engine
|
|||
|
||||
private async Task<RequestEngineResult> ProcessSendingMovie(MovieRequests request, bool is4K)
|
||||
{
|
||||
if (request.Approved)
|
||||
if (is4K ? request.Approved4K : request.Approved)
|
||||
{
|
||||
var result = await Sender.Send(request, is4K);
|
||||
if (result.Success && result.Sent)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue