From 986be1910419907801f55ea0f8c6affa30b7b3a8 Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Sun, 23 Apr 2023 22:44:10 +0200 Subject: [PATCH] [mirotalksfu] - add missing filterXSS --- public/js/RoomClient.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/js/RoomClient.js b/public/js/RoomClient.js index e2cbf163..bd14481b 100644 --- a/public/js/RoomClient.js +++ b/public/js/RoomClient.js @@ -3645,6 +3645,7 @@ class RoomClient { }, }).then((result) => { if (result.value) { + result.value = filterXSS(result.value); if (!this.thereIsParticipants()) { return userLog('info', 'No participants detected', 'top-end'); }