mirror of
https://github.com/TheBeastLT/torrentio-scraper.git
synced 2026-04-20 01:42:03 +00:00
fix quality filter
This commit is contained in:
parent
789b512541
commit
232dc23c2a
1 changed files with 2 additions and 2 deletions
|
|
@ -82,7 +82,7 @@ const QualityFilter = {
|
|||
{
|
||||
key: '4k',
|
||||
label: '4k',
|
||||
items: ['4k'],
|
||||
items: ['4k', '4k HDR'],
|
||||
test(quality) {
|
||||
return this.items.includes(quality);
|
||||
}
|
||||
|
|
@ -115,7 +115,7 @@ const QualityFilter = {
|
|||
key: 'other',
|
||||
label: 'Other (DVDRip/HDRip/BDRip...)',
|
||||
// could be ['DVDRip', 'HDRip', 'BDRip', 'BRRip', 'BluRay', 'WEB-DL', 'WEBRip', 'HDTV', 'DivX', 'XviD']
|
||||
items: ['4k', '1080p', '720p', '480p', 'SCR', 'CAM', 'TeleSync', 'TeleCine'],
|
||||
items: ['4k', '4k HDR', '1080p', '720p', '480p', 'SCR', 'CAM', 'TeleSync', 'TeleCine'],
|
||||
test(quality) {
|
||||
return quality && !this.items.includes(quality);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue