From 40b54a62f0793a07bee9456bf4f233e64e86b544 Mon Sep 17 00:00:00 2001 From: GSTAR <44748406+GLlgGL@users.noreply.github.com> Date: Sun, 30 Nov 2025 23:16:26 +0100 Subject: [PATCH] Update Vidoza.ts Remove double height. --- src/extractor/Vidoza.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/extractor/Vidoza.ts b/src/extractor/Vidoza.ts index 8123943..744ebc2 100644 --- a/src/extractor/Vidoza.ts +++ b/src/extractor/Vidoza.ts @@ -62,7 +62,7 @@ export class Vidoza extends Extractor { } } - const extractedLabel = this.extractLabelFromHtml(html); // returns "720" etc. + const extractedLabel = this.extractLabelFromHtml(html); const height = extractedLabel ? parseInt(extractedLabel, 10) : null; const proxiedUrl = await buildMediaFlowProxyExtractorStreamUrl( @@ -77,14 +77,14 @@ export class Vidoza extends Extractor { { url: proxiedUrl, format: Format.mp4, - label: extractedLabel ? `${extractedLabel}p` : this.label, + label: this.label, ttl: this.ttl, requestHeaders: headers, sourceId: `${this.id}_${meta.countryCodes?.join('_') ?? 'all'}`, meta: { ...meta, title, - ...(height ? { height } : {}), + ...(height !== null ? { height } : {}), ...(bytesSize && bytesSize > 16777216 ? { bytes: bytesSize } : {}), }, },