From be38a22257da440d6005da197bb5f597e3d9eab3 Mon Sep 17 00:00:00 2001 From: Luan Date: Wed, 17 Sep 2025 15:43:51 -0300 Subject: [PATCH] chore(SabrStream): Fix type warnings --- src/core/SabrStream.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/SabrStream.ts b/src/core/SabrStream.ts index be04f4f..f1fef22 100644 --- a/src/core/SabrStream.ts +++ b/src/core/SabrStream.ts @@ -813,7 +813,7 @@ export class SabrStream extends EventEmitterLike { 'accept-encoding': 'identity', 'accept': 'application/vnd.yt-ump' }, - body, + body: body as unknown as BodyInit, signal: this.abortController.signal }); } finally {