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) {