From 232dc23c2ad2f0141aa2d5613f4433378a119b9f Mon Sep 17 00:00:00 2001 From: TheBeastLT Date: Tue, 31 May 2022 08:49:14 +0300 Subject: [PATCH] fix quality filter --- addon/lib/filter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addon/lib/filter.js b/addon/lib/filter.js index 90c521a..52dcf83 100644 --- a/addon/lib/filter.js +++ b/addon/lib/filter.js @@ -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); }