diff --git a/src/applications/content-entries-app/entry/entry-details/entry-details-handler.ts b/src/applications/content-entries-app/entry/entry-details/entry-details-handler.ts index 18e676d67f..ad6e77db83 100644 --- a/src/applications/content-entries-app/entry/entry-details/entry-details-handler.ts +++ b/src/applications/content-entries-app/entry/entry-details/entry-details-handler.ts @@ -45,6 +45,9 @@ export class EntryDetailsHandler extends EntryFormWidget let landingPage = this.appAuthentication.appUser.partnerInfo.landingPage; if (landingPage) { landingPage = landingPage.replace("{entryId}", entry.id); + if (landingPage.indexOf("http") !== 0){ + landingPage = "http://" + landingPage; + } } this._landingPage = landingPage;