Socket
Socket
Sign inDemoInstall

mx-puppet-bridge

Package Overview
Dependencies
293
Maintainers
1
Versions
112
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.45-3 to 0.0.45-4

8

lib/src/provisioner.js

@@ -382,5 +382,9 @@ "use strict";

}
const room = yield this.bridge.roomSync.maybeGet(roomParts);
let room = yield this.bridge.roomSync.maybeGet(roomParts);
if (!room) {
return false;
yield this.bridge.bridgeRoom(roomParts);
room = yield this.bridge.roomSync.maybeGet(roomParts);
if (!room) {
return false;
}
}

@@ -387,0 +391,0 @@ if (yield this.bridge.namespaceHandler.canSeeRoom(room, userId)) {

{
"name": "mx-puppet-bridge",
"version": "0.0.45-3",
"version": "0.0.45-4",
"description": "Matrix Puppeting Bridge library",

@@ -5,0 +5,0 @@ "repository": {

@@ -373,5 +373,9 @@ /*

}
const room = await this.bridge.roomSync.maybeGet(roomParts);
let room = await this.bridge.roomSync.maybeGet(roomParts);
if (!room) {
return false;
await this.bridge.bridgeRoom(roomParts);
room = await this.bridge.roomSync.maybeGet(roomParts);
if (!room) {
return false;
}
}

@@ -378,0 +382,0 @@ if (await this.bridge.namespaceHandler.canSeeRoom(room, userId)) {

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc