@scrypted/server 0.7.51 → 0.7.52

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.51",
3
+ "version": "0.7.52",
4
4
  "description": "",
5
5
  "dependencies": {
6
6
  "@mapbox/node-pre-gyp": "^1.0.10",
@@ -283,7 +283,7 @@ function toStorageString(value: any) {
283
283
  if (value === null)
284
284
  return 'null';
285
285
  if (value === undefined)
286
- return 'undefined;'
286
+ return 'undefined';
287
287
 
288
288
  return value.toString();
289
289
  }