Skip to content

Commit

Permalink
Allow trailing slash in source instance site's domain
Browse files Browse the repository at this point in the history
Modify: Allow trailing slash in source instance site's domain
  • Loading branch information
akfakmot committed Nov 7, 2024
1 parent 3bb880c commit 3d3be1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public async Task<CommandResult> Handle(MigrateSitesCommand request, Cancellatio
{
WebsiteChannelGUID = kx13CmsSite.SiteGuid,
WebsiteChannelChannelGuid = kx13CmsSite.SiteGuid,
WebsiteChannelDomain = kx13CmsSite.SiteDomainName,
WebsiteChannelDomain = kx13CmsSite.SiteDomainName.Trim('/'),
WebsiteChannelHomePage = homePagePath,
WebsiteChannelPrimaryContentLanguageGuid = migratedCultureCodes[defaultCultureCode].ContentLanguageGUID,
WebsiteChannelDefaultCookieLevel = cookieLevel,
Expand Down

0 comments on commit 3d3be1c

Please sign in to comment.