Skip to content

Commit cff8882

Browse files
committed
api/stream: stfu deepsource
1 parent 8900ba6 commit cff8882

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/src/stream/types.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const convertMetadataToFFmpeg = (metadata) => {
2929

3030
for (const [ name, value ] of Object.entries(metadata)) {
3131
if (metadataTags.includes(name)) {
32-
args.push('-metadata', `${name}=${value.replace(/[\u0000-\u0009]/g, "")}`);
32+
args.push('-metadata', `${name}=${value.replace(/[\u0000-\u0009]/g, "")}`); // skipcq: JS-0004
3333
} else {
3434
throw `${name} metadata tag is not supported.`;
3535
}

0 commit comments

Comments
 (0)