[mirotalksfu] - fix typo

هذا الالتزام موجود في:
Miroslav Pejic
2024-02-12 13:33:23 +01:00
الأصل cc3f1e080e
التزام 416c9e71c4

عرض الملف

@@ -29,7 +29,7 @@ module.exports = class ServerApi {
const roomValue = room || uuidV4();
const roomPasswordValue = roomPassword || false;
const nameValue = name || uuidV4();
const nameValue = name || 'User-' + this.getRandomNumber();
const audioValue = audio || false;
const videoValue = video || false;
const screenValue = screen || false;
@@ -72,4 +72,8 @@ module.exports = class ServerApi {
jwtToken
);
}
getRandomNumber() {
return Math.floor(Math.random() * 999999);
}
};