From 71b9c71ae1328e166b15a2ed4d62235eef3755d5 Mon Sep 17 00:00:00 2001 From: Sergiu Toma Date: Wed, 8 Feb 2023 02:54:49 +0200 Subject: [PATCH] Update Client show error correctly --- public/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.js b/public/index.js index 1fbf13a..04091d5 100644 --- a/public/index.js +++ b/public/index.js @@ -472,7 +472,7 @@ const connectRecvTransport = async () => { console.log('remoteVideo PLAY') }) .catch((error) => { - displayError(`remoteVideo PLAY ERROR | ${error.message}`) + console.log(`remoteVideo PLAY ERROR | ${error.message}`) }) }) }