[mirotalksfu] - fix typo

هذا الالتزام موجود في:
Miroslav Pejic
2024-02-29 23:48:07 +01:00
الأصل f0c39bbed9
التزام 1b57493aa9

عرض الملف

@@ -936,7 +936,6 @@ class RoomClient {
getReconnectDirectJoinURL() {
const baseUrl = `${window.location.origin}/join`;
const queryParams = {
room: this.room_id,
password: this.RoomPassword,
@@ -948,7 +947,6 @@ class RoomClient {
isPresenter: isPresenter,
};
if (this.peer_info.peer_token) queryParams.token = this.peer_info.peer_token;
const url = `${baseUrl}?${Object.entries(queryParams)
.map(([key, value]) => `${key}=${value}`)
.join('&')}`;