mirror of
https://github.com/p-stream/providers.git
synced 2026-04-21 00:52:27 +00:00
fix: Exclude capital 'P' from qualities
This commit is contained in:
parent
aaa01a629b
commit
6f9c0517b8
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ export const febBoxScraper = makeEmbed({
|
|||
qualities.forEach((quality: { file: string; label: string }) => {
|
||||
if (allowedQualities.includes(quality.label.replace('P', ''))) {
|
||||
if (!quality.file) return;
|
||||
embedQualities[quality.label.replace('p', '')] = {
|
||||
embedQualities[quality.label.replace('P', '')] = {
|
||||
type: 'mp4',
|
||||
url: quality.file,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue