Skip to content

Commit

Permalink
[mirotalksfu] - #160 fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpejic85 committed Nov 9, 2024
1 parent 3e9db53 commit 97bdf46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions public/js/Room.js
Original file line number Diff line number Diff line change
Expand Up @@ -994,8 +994,6 @@ async function whoAreYou() {
hide(initStartScreenButton);
}

initUser.classList.toggle('hidden');

// Fetch the OIDC profile and manage peer_name
let force_peer_name = false;

Expand Down Expand Up @@ -1024,6 +1022,8 @@ async function whoAreYou() {
console.error('AXIOS OIDC Error fetching profile', error.message || error);
}

initUser.classList.toggle('hidden');

Swal.fire({
allowOutsideClick: false,
allowEscapeKey: false,
Expand Down Expand Up @@ -1064,7 +1064,7 @@ async function whoAreYou() {

if (force_peer_name) {
getId('usernameInput').disabled = true;
getId('initUsernameEmojiButton').disabled = true;
hide(initUsernameEmojiButton);
}

if (!isVideoAllowed) {
Expand Down

0 comments on commit 97bdf46

Please sign in to comment.