fix(dynamic-branding): Extract fqn from public meeting

This commit is contained in:
Gabriel Borlea 2022-03-03 10:08:08 +02:00 committed by GitHub
parent 5d41da9358
commit a65ab1c029
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ export function extractFqnFromPath() {
const parts = window.location.pathname.split('/');
const len = parts.length;
return parts.length > 2 ? `${parts[len - 2]}/${parts[len - 1]}` : '';
return parts.length > 2 ? `${parts[len - 2]}/${parts[len - 1]}` : parts[1];
}
/**