New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

sipware

Package Overview
Dependencies
Maintainers
1
Versions
263
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sipware - npm Package Compare versions

Comparing version 0.5.2 to 0.5.4

16

lib/transaction.js

@@ -151,10 +151,14 @@ const debug = require('debug') ('sipware:transaction')

if(via && via[0]) {
var [session, users] = via[0].split(';');
var idx = via[0].indexOf(';');
if(session === '127.0.0.1') {
via.shift();
resp.req.headers.via = via;
if(idx > 0) {
var [session, users] = [via[0].slice(0, idx), via[0].slice(idx + 1)];
if(session === '127.0.0.1') {
via.shift();
resp.req.headers.via = via;
}
return '*' === users;
}
return '*' == users;
}

@@ -161,0 +165,0 @@ }

@@ -67,3 +67,3 @@ {

"optionalDependencies": {},
"version": "0.5.2",
"version": "0.5.4",
"directories": {

@@ -70,0 +70,0 @@ "lib": "lib"

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc