From 911ffd979467266290ec0aaa2ee3986483126442 Mon Sep 17 00:00:00 2001 From: nin0dev Date: Sat, 8 Mar 2025 23:47:04 -0500 Subject: [PATCH] implement missing features --- UserpluginInstallButton.tsx | 17 ++++++++++++++--- index.tsx | 7 +++++-- native.ts | 30 +++++++++++++++++++++++++++++- 3 files changed, 48 insertions(+), 6 deletions(-) diff --git a/UserpluginInstallButton.tsx b/UserpluginInstallButton.tsx index 0e6c570..5952747 100644 --- a/UserpluginInstallButton.tsx +++ b/UserpluginInstallButton.tsx @@ -16,7 +16,7 @@ export default function UserpluginInstallButton({ props }: any) { return; const gitLink = (props.message.content as string).match(CLONE_LINK_REGEX); if (!gitLink) return; - const installed = plugins.includes(gitLink[1]); + const installed = plugins.includes(gitLink[3]); return <>
{ installed &&