We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61feeeb commit 13cf627Copy full SHA for 13cf627
packages/node/src/transports/base/index.ts
@@ -96,9 +96,9 @@ export abstract class BaseTransport implements Transport {
96
return proxy;
97
}
98
99
- const { host, port } = this._api.dsn;
+ const { hostname, port } = this._api.dsn;
100
for (const np of no_proxy.split(',')) {
101
- if (host.endsWith(np) || `${host}:${port}`.endsWith(np)) {
+ if (hostname.endsWith(np) || `${hostname}:${port}`.endsWith(np)) {
102
return;
103
104
0 commit comments