From d23b0369f3176ca11cf8c433e3301997dadc2279 Mon Sep 17 00:00:00 2001 From: Vanilagy <1696106+Vanilagy@users.noreply.github.com> Date: Mon, 19 Jan 2026 13:32:47 +0100 Subject: [PATCH] Fix side data not being copied when calling EncodedPacket.clone --- src/packet.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/packet.ts b/src/packet.ts index 8be5ee9..fd0e93d 100644 --- a/src/packet.ts +++ b/src/packet.ts @@ -258,6 +258,7 @@ export class EncodedPacket { options?.duration ?? this.duration, this.sequenceNumber, this.byteLength, + this.sideData, ); } }