Fix development bug with selected community from getCommunityDomain

data-transfer-v2
parent 5a515908cd
commit a72f962b3d

@ -5,7 +5,7 @@ import {Session} from "../login/utils/helper.class";
export class ConnectHelper {
public static getCommunityFromDomain(domain: string): string{
if(properties.environment == "development") {
if(properties.environment == "development" && (properties.adminToolsPortalType == "connect" || properties.adminToolsPortalType == "community")) {
domain = "covid-19.openaire.eu"; //for testing
}
domain = domain.indexOf("//") != -1? domain.split("//")[1]:domain; //remove https:// prefix

Loading…
Cancel
Save