Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WEB encodes are now labeled correctly. #75

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/trackers/HUNO.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,11 +221,12 @@ async def get_cat_id(self, category_name):
async def get_type_id(self, meta):
basename = self.get_basename(meta)
type = meta['type']
video_encode = meta['video_encode']

if type == 'REMUX':
return '2'
elif type in ('WEBDL', 'WEBRIP'):
return '15' if 'x265' in basename else '3'
return '15' if 'x265' in video_encode else '3'
elif type in ('ENCODE', 'HDTV'):
return '15'
elif type == 'DISC':
Expand Down
Loading