From 1a4961e2f32db3433f57e3549fc19261345bf9e2 Mon Sep 17 00:00:00 2001 From: Noah Petherbridge Date: Mon, 30 Dec 2024 14:20:39 -0800 Subject: [PATCH] Fix wording of booted cam message to avoid ScamDetection The word 'session' from 'your chat session' was triggering the ScamDetection modal on ChatClient's message about booting someone off your camera. --- src/App.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.vue b/src/App.vue index baf4b73..1cb157e 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1969,7 +1969,7 @@ export default { /** * Front-end web app concerns. */ - + // Generic window.alert replacement modal. async modalAlert({ message, title="Alert", icon="", isConfirm=false }) { return new Promise((resolve, reject) => { @@ -2792,7 +2792,7 @@ export default { `You have booted ${username} off your camera. They will no longer be able ` + `to connect to your camera, or even see that your camera is active at all -- ` + `to them it appears as though you had turned yours off.

This will be ` + - `in place for the remainder of your current chat session.` + `in place for the remainder of your time in chat, until you log off.` ); }); },