Skip to content

Commit

Permalink
HUNO - also prohibit HDTV if not HEVC
Browse files Browse the repository at this point in the history
  • Loading branch information
Audionut committed Jan 6, 2025
1 parent ad505ae commit 7612c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/trackers/HUNO.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ async def is_plex_friendly(self, meta):
return 0

async def search_existing(self, meta, disctype):
if meta['video_codec'] != "HEVC" and (meta['type'] == "ENCODE" or meta['type'] == "WEBRIP" or meta['type'] == "DVDRIP"):
if meta['video_codec'] != "HEVC" and meta['type'] in {"ENCODE", "WEBRIP", "DVDRIP", "HDTV"}:
console.print('[bold red]Only x265/HEVC encodes are allowed at HUNO')
meta['skipping'] = "HUNO"
return
Expand Down

0 comments on commit 7612c33

Please sign in to comment.