chore(ci): upgrade deps (#1868)

This commit is contained in:
Sam Potts
2026-07-28 13:07:09 +10:00
committed by GitHub
parent 409e7ef225
commit 359e56ca49
40 changed files with 3020 additions and 2411 deletions
+1 -1
View File
@@ -236,7 +236,7 @@ export function toVideoId(props: MuxVideoIdProps): string | undefined {
}
export function toPlaybackIdFromSrc(src: string): string | undefined {
if (!src || !src.startsWith('https://stream.')) return undefined;
if (!src?.startsWith('https://stream.')) return undefined;
const [playbackId] = new URL(src).pathname.slice(1).split(/\.m3u8|\//);
return playbackId || undefined;
}