onsip / SIP.js

A simple, intuitive, and powerful JavaScript signaling library
https://sipjs.com
MIT License
1.84k stars 693 forks source link

Add extraHeaders to unsubscribe #1046

Open slavikbialik opened 1 year ago

slavikbialik commented 1 year ago

Adding the ability to add extraHeaders for the unsubscribe method.

Example:

var subscriptionUnsubscribeOptions: SubscriptionUnsubscribeOptions = {
    extraHeaders: [
        `X-Test: test`
]
};

subscriber.unsubscribe(subscriptionUnsubscribeOptions);