From 11fb0aa1d85720b9d3042786895aca60ea9777a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=A9grier?= Date: Mon, 31 May 2021 17:53:27 +0200 Subject: [PATCH] Fixing typo --- front/src/WebRtc/MediaManager.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front/src/WebRtc/MediaManager.ts b/front/src/WebRtc/MediaManager.ts index 5ab603d2..29973e46 100644 --- a/front/src/WebRtc/MediaManager.ts +++ b/front/src/WebRtc/MediaManager.ts @@ -63,7 +63,7 @@ export class MediaManager { localStreamStore.subscribe((result) => { if (result.type === 'error') { console.error(result.error); - layoutManager.addInformation('warning', 'Camera access denied. Click here and check navigators permissions.', () => { + layoutManager.addInformation('warning', 'Camera access denied. Click here and check your browser permissions.', () => { this.showHelpCameraSettingsCallBack(); }, this.userInputManager); return; @@ -73,7 +73,7 @@ export class MediaManager { screenSharingLocalStreamStore.subscribe((result) => { if (result.type === 'error') { console.error(result.error); - layoutManager.addInformation('warning', 'Screen sharing denied. Click here and check navigators permissions.', () => { + layoutManager.addInformation('warning', 'Screen sharing denied. Click here and check your browser permissions.', () => { this.showHelpCameraSettingsCallBack(); }, this.userInputManager); return;