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:
tidusjar 2022-02-16 09:10:20 +00:00
parent 90171f9bb2
commit 87cb9903db
3 changed files with 8 additions and 3 deletions

View file

@ -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)