Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Api4com changes 2.0.4 #2

Open
wants to merge 10 commits into
base: master
Choose a base branch
from

Conversation

silviofernandesdeveloper
Copy link
Owner

Avoid throwing an exception when we make an EVENT SIP OPTIONS request where the ruri_user variable is undefined, and with that when trying to execute the toLowerCase function it generates an exception.

// src/lwpUserAgent.js
if (config_user && ruri_user && config_user.toLowerCase() == ruri_user.toLowerCase()) {
  request.ruri.user = config_user;
}

Add a new method in lwpCall to return the list of custom headers from a call as I needed to implement a logic where calls tagged with a certain header will be answered automatically.

if (currentCall.isInProgress()) {
  const customHeaders = currentCall.getCustomHeaders()
  if (customHeaders && customHeaders['X-IntegratedCall'] === 'true') {
    return currentCall.answer()
  }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants