From e3c1ab89cf144859afa672628fd30f7dbd51680e Mon Sep 17 00:00:00 2001 From: Simon Briere Date: Thu, 2 Dec 2021 14:46:30 -0500 Subject: [PATCH] Fixed participant connection URL --- Frontend/src/app/core/utils/utility-functions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frontend/src/app/core/utils/utility-functions.ts b/Frontend/src/app/core/utils/utility-functions.ts index d38d0a2..5973b55 100644 --- a/Frontend/src/app/core/utils/utility-functions.ts +++ b/Frontend/src/app/core/utils/utility-functions.ts @@ -40,7 +40,7 @@ export function isObjectEmpty(object: any): boolean { } export function createParticipantUrl(token: string): string { - return `${GlobalConstants.protocol}://${GlobalConstants.hostname}:${GlobalConstants.port}/${Pages.participantConnectionURL}?token=${token}`; + return `${GlobalConstants.protocol}://${GlobalConstants.hostname}:${GlobalConstants.port}/${GlobalConstants.psService}${Pages.participantConnectionURL}?token=${token}`; } export function roundToNearestQuarter(date: Date): Date {