Hi,
We are running into an issue where metatag og:url is getting the scheme and host duplicate in output. We solution has multiple websites with primary domains set. With this setup, the Pageview.SearchFriendlyUrl returns the full url including http or https.
Swift code does not perform any validation resulting in:
<meta property="og:url" content="https://www.mysite.comhttps://www.mysite.com/home">
Pageview.Meta.AddTag($"<meta property=\"og:url\" content=\"{Dynamicweb.Context.Current.Request.Url.Scheme}://{Dynamicweb.Context.Current.Request.Url.Host}{Pageview.SearchFriendlyUrl}\">");
BR Mario