summaryrefslogtreecommitdiff
path: root/frontend/src/plugin-loader.tsx
diff options
context:
space:
mode:
authorMarco Rodolfi <marco.rodolfi@tuta.io>2023-06-22 12:54:41 +0200
committerMarco Rodolfi <marco.rodolfi@tuta.io>2023-06-22 12:54:41 +0200
commitb2a1b172e266d5f05093a7edafa59d6ce53315f2 (patch)
tree98659543c97a60d99181867e1c20d6c623752083 /frontend/src/plugin-loader.tsx
parentfc72ac5c6372fe08857ecf1b1a0904635d1b6c2d (diff)
downloaddecky-loader-b2a1b172e266d5f05093a7edafa59d6ce53315f2.tar.gz
decky-loader-b2a1b172e266d5f05093a7edafa59d6ce53315f2.zip
Fix: export V2 to plugins
Diffstat (limited to 'frontend/src/plugin-loader.tsx')
-rw-r--r--frontend/src/plugin-loader.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/frontend/src/plugin-loader.tsx b/frontend/src/plugin-loader.tsx
index e8671faa..387de7bf 100644
--- a/frontend/src/plugin-loader.tsx
+++ b/frontend/src/plugin-loader.tsx
@@ -438,6 +438,7 @@ class PluginLoader extends Logger {
toaster: this.toaster,
callServerMethod: this.callServerMethod,
openFilePicker: this.openFilePicker,
+ openFilePickerV2: this.openFilePickerV2,
async callPluginMethod(methodName: string, args = {}) {
const response = await fetch(`http://127.0.0.1:1337/plugins/${pluginName}/methods/${methodName}`, {
method: 'POST',