From afb2c7c0ed1ef9ccad6b5a6764cdbc5c103563a8 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Mon, 25 Jul 2022 17:13:50 -0400 Subject: Better install process UX, fix reinstalling --- frontend/src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontend/src/index.tsx') diff --git a/frontend/src/index.tsx b/frontend/src/index.tsx index 364ccb1b..188c1330 100644 --- a/frontend/src/index.tsx +++ b/frontend/src/index.tsx @@ -21,7 +21,7 @@ window.importDeckyPlugin = function (name: string) { window.syncDeckyPlugins = async function () { const plugins = await (await fetch('http://127.0.0.1:1337/plugins')).json(); for (const plugin of plugins) { - window.DeckyPluginLoader?.importPlugin(plugin); + if (!window.DeckyPluginLoader.hasPlugin(plugin)) window.DeckyPluginLoader?.importPlugin(plugin); } }; -- cgit v1.2.3