Skip to content

Commit

Permalink
Fixed participant connection URL
Browse files Browse the repository at this point in the history
  • Loading branch information
SBriere committed Dec 2, 2021
1 parent 5a78bd2 commit e3c1ab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Frontend/src/app/core/utils/utility-functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit e3c1ab8

Please sign in to comment.