diff --git a/server/src/plugin/plugin-host.ts b/server/src/plugin/plugin-host.ts index 0477e8e1e..8f921d8dc 100644 --- a/server/src/plugin/plugin-host.ts +++ b/server/src/plugin/plugin-host.ts @@ -31,7 +31,6 @@ export class PluginHost { pluginId: string; module: Promise; scrypted: ScryptedRuntime; - console: Promise; remote: PluginRemote; zip: AdmZip; io = io(undefined, { @@ -155,7 +154,6 @@ export class PluginHost { this.api = new PluginHostAPI(scrypted, plugin, this); - this.console = this.peer.eval('return console', undefined, undefined, true) as Promise; const zipBuffer = Buffer.from(plugin.zip, 'base64'); this.zip = new AdmZip(zipBuffer);