From 65989e3c384926b1dff45a00410e458e4995bf9f Mon Sep 17 00:00:00 2001 From: Addison Beck Date: Thu, 29 Sep 2022 14:10:35 -0400 Subject: [PATCH] Rename anonymousHub route to anonymous-hub (#3650) --- 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 13b5898b18b..d0a069414a2 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, })