fix site urls convertions

This commit is contained in:
Antoine Kingue 2024-06-29 13:11:14 +02:00
parent 4c03272008
commit 479fba3cfd

View File

@ -92,11 +92,11 @@ export async function checkSiteUrl(accessToken: string, siteUrl: string) {
// Convert the site URL into all possible formats
if (siteUrl.startsWith("https://")) {
formattedUrls.push(siteUrl);
formattedUrls.push(convertToHTTP(siteUrl));
formattedUrls.push(convertToHTTP(siteUrl.replace("https://", "")));
formattedUrls.push(convertToSCDomain(siteUrl));
} else if (siteUrl.startsWith("http://")) {
formattedUrls.push(siteUrl);
formattedUrls.push(convertToHTTPS(siteUrl));
formattedUrls.push(convertToHTTPS(siteUrl.replace("http://", "")));
formattedUrls.push(convertToSCDomain(siteUrl));
} else if (siteUrl.startsWith("sc-domain:")) {
formattedUrls.push(siteUrl);