I have Client-side room creation enabled. Therefore I use connect to create a room, by doing so I came across the need of status callbacks, so I created this code:
connect(token, {
name: roomname,
tracks: lt,
statusCallback: `myOnlineAccessibleUrl`
});
Link is online. Room is created. This did not solve the issue. What am I doing wrong?