@scrypted/server 0.115.13 → 0.115.14

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scrypted/server",
3
- "version": "0.115.13",
3
+ "version": "0.115.14",
4
4
  "description": "",
5
5
  "dependencies": {
6
6
  "@mapbox/node-pre-gyp": "^1.0.11",
@@ -896,6 +896,9 @@ class PluginRemote:
896
896
  zip, self, self.systemManager, self.deviceManager, self.mediaManager
897
897
  )
898
898
 
899
+ fsPath = os.path.join(plugin_zip_paths.get("unzipped_path"), "fs")
900
+ os.chdir(fsPath)
901
+
899
902
  if not forkMain:
900
903
  from main import create_scrypted_plugin # type: ignore
901
904