Rename anonymousHub route to anonymous-hub (#3650)

This commit is contained in:
Addison Beck 2022-09-29 14:10:35 -04:00 committed by GitHub
parent 1fbfb89cc3
commit 65989e3c38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ export class AnonymousHubService implements AnonymousHubServiceAbstraction {
this.url = this.environmentService.getNotificationsUrl();
this.anonHubConnection = new HubConnectionBuilder()
.withUrl(this.url + "/anonymousHub?Token=" + token, {
.withUrl(this.url + "/anonymous-hub?Token=" + token, {
skipNegotiation: true,
transport: HttpTransportType.WebSockets,
})