Skip to content

Commit

Permalink
[mirotalksfu] - #175 fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpejic85 committed Nov 3, 2024
1 parent e03f269 commit 35aa060
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion public/js/Common.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ const lastRoom = document.getElementById('lastRoom');
const lastRoomName = window.localStorage.lastRoom ? window.localStorage.lastRoom : '';
if (lastRoomContainer && lastRoom && lastRoomName) {
lastRoomContainer.style.display = 'inline-flex';
lastRoom.setAttribute('href', '/join/' + lastRoomName);
lastRoom.setAttribute('href', '/join/?room=' + lastRoomName);
lastRoom.innerText = lastRoomName;
}

Expand Down
2 changes: 1 addition & 1 deletion public/views/permission.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ <h1 class="hero-title mt-0">Access denied.</h1>
<div class="hero-cta">
<a
class="button button-primary pulse"
onclick="room_id ? window.location.href = '/join/' + room_id : window.location.href = '/newroom';"
onclick="room_id ? window.location.href = '/join/?room=' + room_id : window.location.href = '/newroom';"
>TRY AGAIN</a
>
</div>
Expand Down

0 comments on commit 35aa060

Please sign in to comment.