@scrypted/server 0.7.65 → 0.7.67

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of @scrypted/server might be problematic. Click here for more details.

package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scrypted/server",
3
- "version": "0.7.65",
3
+ "version": "0.7.67",
4
4
  "description": "",
5
5
  "dependencies": {
6
6
  "@mapbox/node-pre-gyp": "^1.0.10",
@@ -185,7 +185,7 @@ export class SystemManagerImpl implements SystemManager {
185
185
  const state = this.state[check];
186
186
  if (state[ScryptedInterfaceProperty.pluginId].value === idOrPluginId) {
187
187
  // null and undefined should match here.
188
- if (nativeId == state[ScryptedInterfaceProperty.nativeId].value) {
188
+ if (nativeId == state[ScryptedInterfaceProperty.nativeId]?.value) {
189
189
  id = check;
190
190
  break;
191
191
  }