From 4cbb119ce7f40fd666307b09ae648d9da08f5a6e Mon Sep 17 00:00:00 2001 From: addison Date: Thu, 29 Sep 2022 12:43:14 -0400 Subject: [PATCH] Rename anonymousHub route to anonymous-hub --- libs/common/src/services/anonymousHub.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/common/src/services/anonymousHub.service.ts b/libs/common/src/services/anonymousHub.service.ts index 13b5898b18b2..d0a069414a26 100644 --- a/libs/common/src/services/anonymousHub.service.ts +++ b/libs/common/src/services/anonymousHub.service.ts @@ -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, })