@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 +1 -1
- package/src/plugin/system.ts +1 -1
package/package.json
CHANGED
package/src/plugin/system.ts
CHANGED
@@ -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]
|
188
|
+
if (nativeId == state[ScryptedInterfaceProperty.nativeId]?.value) {
|
189
189
|
id = check;
|
190
190
|
break;
|
191
191
|
}
|