mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 04:21:27 +02:00
@@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
@@ -70,7 +70,15 @@ namespace NzbDrone.Core.Indexers.AwesomeHD
|
|||||||
foreach (var torrent in torrents)
|
foreach (var torrent in torrents)
|
||||||
{
|
{
|
||||||
var id = torrent.Id;
|
var id = torrent.Id;
|
||||||
|
|
||||||
var title = $"{torrent.Name}.{torrent.Year}.{torrent.Resolution}.{torrent.Media}.{torrent.Encoding}.{torrent.AudioFormat}-{torrent.ReleaseGroup}";
|
var title = $"{torrent.Name}.{torrent.Year}.{torrent.Resolution}.{torrent.Media}.{torrent.Encoding}.{torrent.AudioFormat}-{torrent.ReleaseGroup}";
|
||||||
|
|
||||||
|
if (torrent.Encoding.ToLower() == "x265")
|
||||||
|
{
|
||||||
|
//Per AHD staff they only allow HDR x265 encodes (https://github.com/Radarr/Radarr/issues/4386)
|
||||||
|
title = $"{torrent.Name}.{torrent.Year}.{torrent.Resolution}.{torrent.Media}.HDR.{torrent.Encoding}.{torrent.AudioFormat}-{torrent.ReleaseGroup}";
|
||||||
|
}
|
||||||
|
|
||||||
IndexerFlags flags = 0;
|
IndexerFlags flags = 0;
|
||||||
|
|
||||||
if (torrent.Freeleech == "0.00")
|
if (torrent.Freeleech == "0.00")
|
||||||
|
Reference in New Issue
Block a user