From bf91340fd48c9a89136a793565f802473005bf9f Mon Sep 17 00:00:00 2001 From: Caleb Roseland Date: Wed, 15 Nov 2023 21:29:54 -0600 Subject: [PATCH] put back plugin case --- app/utils/deep_link/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/utils/deep_link/index.ts b/app/utils/deep_link/index.ts index 5b77d6ed0..44221f7a4 100644 --- a/app/utils/deep_link/index.ts +++ b/app/utils/deep_link/index.ts @@ -106,6 +106,12 @@ export async function handleDeepLink(deepLinkUrl: string, intlShape?: IntlShape, showPermalink(existingServerUrl, deepLinkData.teamName, deepLinkData.postId); break; } + case DeepLink.Plugin: { + // https://mattermost.atlassian.net/browse/MM-49846 + // const deepLinkData = parsed.data as DeepLinkPlugin; + // showModal('PluginInternal', deepLinkData.id, {link: location}); + break; + } } return {error: false}; } catch (error) {