Skip to content

Commit

Permalink
fix: checks whether image exists for is EncodedOutputs (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
s-hamdananwar authored Nov 5, 2024
1 parent da1ee33 commit a79a333
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/livekit-server-sdk/src/EgressClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,8 @@ export class EgressClient extends ServiceBase {
return (
(<EncodedOutputs>output).file !== undefined ||
(<EncodedOutputs>output).stream !== undefined ||
(<EncodedOutputs>output).segments !== undefined
(<EncodedOutputs>output).segments !== undefined ||
(<EncodedOutputs>output).images !== undefined
);
}

Expand Down

0 comments on commit a79a333

Please sign in to comment.