Skip to content

Commit 3140052

Browse files
fix: removed unnecessary character from VideoCodec transformation
1 parent 50889a8 commit 3140052

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react/src/transformationParsers/parseVideoCodec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ export const parseVideoCodec = (videoCodec: VideoCodec): `vc_${string}` => {
1212
return `vc_${videoCodec.use}${
1313
Object.is(videoCodec.profile, undefined) ? '' : `:${videoCodec.profile}`
1414
}${
15-
Object.is(videoCodec.level, undefined) ? '' : `:${videoCodec.level}$`
15+
Object.is(videoCodec.level, undefined) ? '' : `:${videoCodec.level}`
1616
}`;
1717
}

0 commit comments

Comments
 (0)