Skip to content

Commit

Permalink
Merge pull request #1066 from scramjetorg/fix/empty-config
Browse files Browse the repository at this point in the history
Fixed null config
  • Loading branch information
gzukowski authored Mar 19, 2024
2 parents 18cab7b + 99d462e commit 327503f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/host/src/lib/csi-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ export class CSIController extends TypedEmitter<Events> {

this.info.ports = message[1].ports;
this.sequence = message[1].sequenceInfo;

this.appConfig = message[1].payload.appConfig;
this.inputTopic = message[1].payload?.inputTopic;
this.outputTopic = message[1].payload?.outputTopic;
// TODO: add message to initiate the instance adapter
Expand Down

0 comments on commit 327503f

Please sign in to comment.