Problem after cancel a attended transfer

Hi,

if i cancel a attended transfer (“line 1”, helper), i can’t hear the the person on “line 0” anymore. I cancel the transfer with hangup line 1. Then i can see in the console:

  1. Hang up line 1 (Message from my javascript)
  2. Cleaning WebRTC stuff (janus.js)
  3. Stopping local stream tracks (janus.js)

I guess the problem could be step 3 which stopping the local streams, right?

Regards

Thomas

Make sure you don’t have code that removes resources associated to other handles.

My mistake was to use one static audio element for line0 and line1.

Now i create an audio element for each line on demand and remove them on cleanup.

Thanks, Lorenzo.