Skip to content

Commit

Permalink
fix: AutomationConnection, OSC server could only receive local connec…
Browse files Browse the repository at this point in the history
…tions. IP changed to 0.0.0.0
  • Loading branch information
olzzon committed Jun 19, 2019
1 parent f3eb9f2 commit ceb4d2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/AutomationConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class AutomationConnection {
this.automationProtocol = AutomationPresets[this.store.settings[0].automationProtocol] || AutomationPresets.sofie;

this.oscConnection = new osc.UDPPort({
localAddress: "127.0.0.1",
localAddress: "0.0.0.0",
localPort: AUTOMATION_OSC_PORT
});
this.setupAutomationConnection();
Expand Down

0 comments on commit ceb4d2f

Please sign in to comment.