[mirotalksfu] - update dep

هذا الالتزام موجود في:
Miroslav Pejic
2025-03-31 22:32:02 +02:00
الأصل 777d361d4f
التزام 88cc8f5129
4 ملفات معدلة مع 17 إضافات و17 حذوفات

عرض الملف

@@ -64,7 +64,7 @@ dev dependencies: {
* @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.03
* @version 1.8.04
*
*/
@@ -439,15 +439,15 @@ function startServer() {
// Mattermost
const mattermost = new Mattermost(app);
// POST start from here...
app.post('*', function (next) {
next();
});
// // POST start from here...
// app.post('*', function (next) {
// next();
// });
// GET start from here...
app.get('*', function (next) {
next();
});
// // GET start from here...
// app.get('*', function (next) {
// next();
// });
// Remove trailing slashes in url handle bad requests
app.use((err, req, res, next) => {
@@ -759,7 +759,7 @@ function startServer() {
});
// not specified correctly the room id
app.get('/join/*', (req, res) => {
app.get('/join/\\*', (req, res) => {
res.redirect('/');
});
@@ -973,7 +973,7 @@ function startServer() {
res.json({ enabled: rtmpEnabled });
});
app.post('/initRTMP', checkRTMPApiSecret, checkMaxStreams, async (req, res) => {
app.post('/initRTMP', checkRTMPApiSecret, checkMaxStreams, (req, res) => {
if (!rtmpCfg || !rtmpCfg.enabled) {
return res.status(400).send('RTMP server is not enabled or missing the config');
}
@@ -1274,7 +1274,7 @@ function startServer() {
});
// not match any of page before, so 404 not found
app.get('*', function (req, res) {
app.get('\\*', function (req, res) {
res.sendFile(views.notFound);
});

عرض الملف

@@ -1,6 +1,6 @@
{
"name": "mirotalksfu",
"version": "1.8.03",
"version": "1.8.04",
"description": "WebRTC SFU browser-based video calls",
"main": "Server.js",
"scripts": {
@@ -69,7 +69,7 @@
"discord.js": "^14.18.0",
"dompurify": "^3.2.4",
"dotenv": "^16.4.7",
"express": "4.21.2",
"express": "5.1.0",
"express-openid-connect": "^2.18.0",
"fluent-ffmpeg": "^2.1.3",
"he": "^1.2.0",
@@ -81,7 +81,7 @@
"mediasoup": "3.15.7",
"mediasoup-client": "3.9.5",
"nodemailer": "^6.10.0",
"openai": "^4.90.0",
"openai": "^4.91.0",
"qs": "6.14.0",
"sanitize-filename": "^1.6.3",
"socket.io": "4.8.1",

عرض الملف

@@ -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.03
* @version 1.8.04
*
*/

عرض الملف

@@ -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.03
* @version 1.8.04
*
*/