Merge branch 'develop' of github.com:thecodingmachine/workadventure

This commit is contained in:
_Bastler
2021-09-21 21:10:09 +02:00
8 changed files with 29 additions and 8 deletions
+3
View File
@@ -129,6 +129,9 @@ class JitsiFactory {
* Slugifies the room name and prepends the room name with the instance
*/
public getRoomName(roomName: string, instance: string): string {
if (!instance || instance == '') {
return slugify(roomName);
}
return slugify(instance.replace("/", "-") + "-" + roomName);
}