mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
fix quality filter
This commit is contained in:
@@ -82,7 +82,7 @@ const QualityFilter = {
|
|||||||
{
|
{
|
||||||
key: '4k',
|
key: '4k',
|
||||||
label: '4k',
|
label: '4k',
|
||||||
items: ['4k'],
|
items: ['4k', '4k HDR'],
|
||||||
test(quality) {
|
test(quality) {
|
||||||
return this.items.includes(quality);
|
return this.items.includes(quality);
|
||||||
}
|
}
|
||||||
@@ -115,7 +115,7 @@ const QualityFilter = {
|
|||||||
key: 'other',
|
key: 'other',
|
||||||
label: 'Other (DVDRip/HDRip/BDRip...)',
|
label: 'Other (DVDRip/HDRip/BDRip...)',
|
||||||
// could be ['DVDRip', 'HDRip', 'BDRip', 'BRRip', 'BluRay', 'WEB-DL', 'WEBRip', 'HDTV', 'DivX', 'XviD']
|
// 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) {
|
test(quality) {
|
||||||
return quality && !this.items.includes(quality);
|
return quality && !this.items.includes(quality);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user