From bcc63ae15dd19e6459c19298d0fc2fb561a288e3 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Thu, 22 Dec 2022 09:54:05 -0500 Subject: [PATCH] *Need to pass through proxy requests to config object --- src/modules/plugin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/plugin.ts b/src/modules/plugin.ts index ce13a8d..7afb069 100644 --- a/src/modules/plugin.ts +++ b/src/modules/plugin.ts @@ -191,7 +191,7 @@ export class PluginAPIManager { }; } - throw new Error(`Invalid method accessed ${prop}`); + return (target as any)[prop]; }, }); }