fix: external actions were assuming all actions are urls. Fixes #3213

This commit is contained in:
Gabe Kangas
2023-07-26 11:15:23 -07:00
parent 7575c64d14
commit 16db7825c9

View File

@@ -138,6 +138,8 @@ export const Content: FC = () => {
const externalActionSelected = (action: ExternalAction) => { const externalActionSelected = (action: ExternalAction) => {
const { openExternally, url } = action; const { openExternally, url } = action;
if (url) {
const updatedUrl = new URL(url); const updatedUrl = new URL(url);
updatedUrl.searchParams.append('instance', currentBrowserWindowUrl); updatedUrl.searchParams.append('instance', currentBrowserWindowUrl);
@@ -160,6 +162,9 @@ export const Content: FC = () => {
} else { } else {
setExternalActionToDisplay(updatedAction); setExternalActionToDisplay(updatedAction);
} }
} else {
setExternalActionToDisplay(action);
}
}; };
const incrementVisitCounter = () => { const incrementVisitCounter = () => {