From 0bc8de97201d47b0ca8429751d97bce00f7a1c81 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Sun, 24 Oct 2021 11:10:20 -0700 Subject: [PATCH] server: remove cruft --- server/src/plugin/plugin-host.ts | 2 -- 1 file changed, 2 deletions(-) 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);