Skip to content

Commit

Permalink
Fix intiface connection when bio.port isn't specified
Browse files Browse the repository at this point in the history
  • Loading branch information
SenkyDragon committed Nov 28, 2023
1 parent 69bcaae commit 7992fa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/OscConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export default class OscConnection extends (EventEmitter as new () => TypedEmitt
stringPort = split[1]!;
} else if (input.match(/^\d+$/)) {
stringPort = input;
} else {
} else if (input) {
outAddress = input;
}

Expand Down

0 comments on commit 7992fa2

Please sign in to comment.