fix: HRD -> HDR (#147)

This commit is contained in:
Matt Lewis
2023-09-11 12:23:34 -06:00
committed by GitHub
parent a40cb93812
commit d89ff90475

View File

@@ -92,8 +92,8 @@ const QualityFilter = {
},
{
key: 'hdrall',
label: 'HDR/HRD10+/Dolby Vision',
items: ['HDR', 'HRD10+', 'DV'],
label: 'HDR/HDR10+/Dolby Vision',
items: ['HDR', 'HDR10+', 'DV'],
test(quality) {
const hdrProfiles = quality && quality.split(' ').slice(1).join() || '';
return this.items.some(hdrType => hdrProfiles.includes(hdrType));