Skip to content

Commit 04e522f

Browse files
[mirotalksfu] - fix typo
1 parent b658b55 commit 04e522f

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

.env.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ====================================================
2-
# MiroTalk SFU v.2.0.52 - Environment Configuration
2+
# MiroTalk SFU v.2.0.53 - Environment Configuration
33
# ====================================================
44

55
# config.js - Main configuration with:

app/src/Discord.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Discord {
2929
}
3030

3131
setupEventHandlers() {
32-
this.discordClient.once('ready', () => {
32+
this.discordClient.once('clientReady', () => {
3333
log.info(`Discord Bot Logged in as ${this.discordClient.user.tag}!`, '😎');
3434
});
3535

app/src/Server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ dev dependencies: {
6464
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
6565
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
6666
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
67-
* @version 2.0.52
67+
* @version 2.0.53
6868
*
6969
*/
7070

app/src/config.template.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* ==============================================
5-
* MiroTalk SFU v2.0.52 - Configuration File
5+
* MiroTalk SFU v2.0.53 - Configuration File
66
* ==============================================
77
*
88
* This file contains all configurable settings for the MiroTalk SFU application.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mirotalksfu",
3-
"version": "2.0.52",
3+
"version": "2.0.53",
44
"description": "WebRTC SFU browser-based video calls",
55
"main": "Server.js",
66
"scripts": {

public/js/Brand.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ let BRAND = {
8080
},
8181
about: {
8282
imageUrl: '../images/mirotalk-logo.gif',
83-
title: '<strong>WebRTC SFU v2.0.52</strong>',
83+
title: '<strong>WebRTC SFU v2.0.53</strong>',
8484
html: `
8585
<button
8686
id="support-button"

public/js/Room.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if (location.href.substr(0, 5) !== 'https') location.href = 'https' + location.h
1111
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
1212
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
1313
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
14-
* @version 2.0.52
14+
* @version 2.0.53
1515
*
1616
*/
1717

@@ -6279,7 +6279,7 @@ function showAbout() {
62796279
position: 'center',
62806280
imageUrl: BRAND.about?.imageUrl && BRAND.about.imageUrl.trim() !== '' ? BRAND.about.imageUrl : image.about,
62816281
customClass: { image: 'img-about' },
6282-
title: BRAND.about?.title && BRAND.about.title.trim() !== '' ? BRAND.about.title : 'WebRTC SFU v2.0.52',
6282+
title: BRAND.about?.title && BRAND.about.title.trim() !== '' ? BRAND.about.title : 'WebRTC SFU v2.0.53',
62836283
html: `
62846284
<br />
62856285
<div id="about">

public/js/RoomClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
1010
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
1111
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
12-
* @version 2.0.52
12+
* @version 2.0.53
1313
*
1414
*/
1515

0 commit comments

Comments
 (0)