Skip to content

Commit

Permalink
Fix null error in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
michelinewu committed Nov 17, 2023
1 parent cb0ef5c commit c21cb02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/services/streaming/streaming.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ export class StreamingService
private resolveStartStreaming: Function = () => {};
private rejectStartStreaming: Function = () => {};

private horizontalRecording: ISimpleRecording | IAdvancedRecording = null;
private verticalRecording: ISimpleRecording | IAdvancedRecording = null;
private horizontalRecording: ISimpleRecording | IAdvancedRecording | null = null;
private verticalRecording: ISimpleRecording | IAdvancedRecording | null = null;

static initialState: IStreamingServiceState = {
streamingStatus: EStreamingState.Offline,
Expand Down

0 comments on commit c21cb02

Please sign in to comment.