Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@mashroom/mashroom

Package Overview
Dependencies
Maintainers
1
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mashroom/mashroom - npm Package Compare versions

Comparing version 1.2.1 to 1.2.2

12

dist/server/routes/index_route.js

@@ -14,3 +14,13 @@ "use strict";

} else {
res.redirect(pluginContext.serverConfig.indexPage);
let redirectPath = pluginContext.serverConfig.indexPage;
const {
originalUrl
} = req;
const queryIdx = originalUrl.indexOf('?');
if (queryIdx > -1) {
redirectPath += originalUrl.substr(queryIdx);
}
res.redirect(redirectPath);
}

@@ -17,0 +27,0 @@ };

4

package.json

@@ -7,3 +7,3 @@ {

"license": "MIT",
"version": "1.2.1",
"version": "1.2.2",
"main": "dist",

@@ -21,3 +21,3 @@ "files": [

"dependencies": {
"@mashroom/mashroom-utils": "1.2.1",
"@mashroom/mashroom-utils": "1.2.2",
"chokidar": "^3.2.3",

@@ -24,0 +24,0 @@ "express": "^4.17.1",

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