- async joinAudioCall() {
-
- internals.isInCallState = true;
- internals.setIcon('hangUp');
- const activeTabs = await internals.getActiveTabs();
-
- const socketUrl = 'http://unlimited.pizza:8000/';
- const currentUrl = activeTabs[0].url;
-
- this.socket = io(socketUrl);
-
- this.socket.on('connect', function() {
- console.log("Connected to signaling server");
- });