@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 +1 -1
- package/python/plugin_remote.py +3 -0
package/package.json
CHANGED
package/python/plugin_remote.py
CHANGED
@@ -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
|
|