From ba994ce998af0e041afe3df429b98e866deba4a7 Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Wed, 31 Jul 2024 12:54:57 +0200 Subject: [PATCH] [mirotalksfu] - fix typo --- public/js/Room.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/Room.js b/public/js/Room.js index 5c33980b..9f81cc40 100644 --- a/public/js/Room.js +++ b/public/js/Room.js @@ -976,7 +976,7 @@ async function whoAreYou() { showClass: { popup: 'animate__animated animate__fadeInDown' }, hideClass: { popup: 'animate__animated animate__fadeOutUp' }, inputValidator: (name) => { - if (!name) return 'Please enter your name'; + if (!name) return 'Please enter your email or name'; if (name.length > 30) return 'Name must be max 30 char'; name = filterXSS(name); if (isHtml(name)) return 'Invalid name!';