-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: handle server url with params correctly #1366
base: main
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: 24845bc The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
f366e35
to
802996d
Compare
Change-Id: Icc11fab672200138ab11367671adc7565aa37a8a
802996d
to
d313355
Compare
src/api/SignalClient.ts
Outdated
@@ -294,11 +298,11 @@ export class SignalClient { | |||
abortHandler(); | |||
} | |||
abortSignal?.addEventListener('abort', abortHandler); | |||
this.log.debug(`connecting to ${url + params}`, this.logContext); | |||
this.log.debug(`connecting to ${urlObj}`, this.logContext); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this.log.debug(`connecting to ${urlObj}`, this.logContext); | |
this.log.debug(`connecting to ${urlObj.host}`, { | |
reconnect: opts.reconnect, | |
reconnectReason: opts.reconnectReason, | |
...this.logContext, | |
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done, thanks.
Change-Id: I4d6390be6deec8bc9037af515d172456ec257eee
8ceadbd
to
24845bc
Compare
Change-Id: Id7c37483cf36acb15d662de82f0ddb6fc08f53b1