Skip to content

Commit

Permalink
fix: don't force port when matching Service with Config (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
rentallect authored Aug 31, 2023
1 parent 56b20ec commit 3a6c01f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/context/context.js
Original file line number Diff line number Diff line change
Expand Up @@ -1728,7 +1728,7 @@ class ZitiContext extends EventEmitter {
if ((parsedURL.protocol === 'https:') || (parsedURL.protocol === 'wss:')) {
port = 443;
} else {
port = 80;
port = null;
}
}

Expand Down

0 comments on commit 3a6c01f

Please sign in to comment.