[mirotalksfu] - Fix chat AI

هذا الالتزام موجود في:
Miroslav Pejic
2025-05-25 10:39:03 +02:00
الأصل d50c9a6e47
التزام 32103f9a0c
5 ملفات معدلة مع 15 إضافات و12 حذوفات

عرض الملف

@@ -64,7 +64,7 @@ let BRAND = {
},
about: {
imageUrl: '../images/mirotalk-logo.gif',
title: '<strong>WebRTC SFU v1.8.46</strong>',
title: '<strong>WebRTC SFU v1.8.47</strong>',
html: `
<button
id="support-button"

عرض الملف

@@ -11,7 +11,7 @@ if (location.href.substr(0, 5) !== 'https') location.href = 'https' + location.h
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.8.46
* @version 1.8.47
*
*/
@@ -5385,7 +5385,7 @@ function showAbout() {
position: 'center',
imageUrl: BRAND.about?.imageUrl && BRAND.about.imageUrl.trim() !== '' ? BRAND.about.imageUrl : image.about,
customClass: { image: 'img-about' },
title: BRAND.about?.title && BRAND.about.title.trim() !== '' ? BRAND.about.title : 'WebRTC SFU v1.8.46',
title: BRAND.about?.title && BRAND.about.title.trim() !== '' ? BRAND.about.title : 'WebRTC SFU v1.8.47',
html: `
<br />
<div id="about">

عرض الملف

@@ -9,7 +9,7 @@
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.8.46
* @version 1.8.47
*
*/
@@ -1304,6 +1304,8 @@ class RoomClient {
}
handleDisconnect(reason) {
endRoomSession();
window.localStorage.isReconnected = true;
console.log('Disconnected. Attempting to reconnect...');
@@ -1422,6 +1424,7 @@ class RoomClient {
this.socket.once('connect', () => {
console.log('Reconnected!');
this.reconnectAttempts = 0;
startRoomSession();
clearTimers();
});
@@ -4899,8 +4902,8 @@ class RoomClient {
}
if (isDeepSeekOn) {
data.to_peer_id = 'deepSeek';
data.to_peer_name = 'deepSeek';
data.to_peer_id = 'DeepSeek';
data.to_peer_name = 'DeepSeek';
console.log('Send message:', data);
this.socket.emit('message', data);
this.setMsgAvatar('left', this.peer_name, this.peer_avatar);
@@ -4949,7 +4952,7 @@ class RoomClient {
});
}
if (!isChatGPTOn || !isDeepSeekOn) {
if (!isChatGPTOn && !isDeepSeekOn) {
const participantsList = this.getId('participantsList');
const participantsListItems = participantsList.getElementsByTagName('li');
for (let i = 0; i < participantsListItems.length; i++) {