Fix outlink of app links

This commit is contained in:
Johannes Zellner
2025-03-10 16:19:55 +01:00
parent 8eec3cddb5
commit 77d4a9f711

View File

@@ -149,7 +149,7 @@ async function refreshApps() {
// amend properties to mimick full app
for (const applink of applinks) {
applink.type = APP_TYPES.LINK;
applink.fqdn = applink.upstreamUri;
applink.fqdn = applink.upstreamUri.replace('https://', '');
applink.manifest = { addons: {}};
applink.installationState = ISTATES.INSTALLED;
applink.runState = RSTATES.RUNNING;