Results 17 comments of Slavik

> cating that subscription has closed. However there is a check in [`user-agent.onTransportMessage()`](https://github.com/onsip/SIP.js/blob/master/src/api/user-agent.ts#L878) that is checking if the `user-agent` is stopped. And then dropping the`NOTIFY because of Thank you very...

> To work around this you could dispose of your subscriptions manually before calling `stop()` on the user-agent. Thanks! Already done, but not in an efficient way I think. If...

> > To work around this you could **dispose of your subscriptions manually** before calling `stop()` on the user-agent. > > Any progress😊? How to do this before the bug...

I solved it a while ago by modifying a little bit the `assignStream` function (from [here](https://github.com/onsip/SIP.js/blob/master/docs/session-description-handler.md)) to be the following one: ``` // Assign a MediaStream to an HTMLMediaElement and...

You are doing it correctly. Canceling the request on `Establishing` state. I think it would be better if you share a full console log including the SIP messages from when...

I am also doing it on `Initial` state, and I didn't observe any issues yet, nor our QA team that are awesome with trying to break things up heh. It...

Yes, I had this issue, too. You'll need to send the 200OK manually. In your `Subscriber` object, I assume you already delegated with `onNotify` in order to catch to NOTIFY...

OK, thank you! Hope it'll be available some day. The reason I need it is to have the ability to order a focus (conference) to make actions like adding /...

After testing it further, so yes, conferences on FreeSwitch (and probably some other systems) are only accepting out of dialog REFER towards the conference (focus) in order to make an...

@egreenmachine Well, I am not sure but I think I found a way to send OOD REFER like I wanted. It still not working for me according to the RFC...