Fix missing encoding in workspace-logo, members, person (#6510)

This commit is contained in:
Weiko
2024-08-02 15:18:48 +02:00
committed by GitHub
parent 0c036efcc4
commit 5870979bfa
13 changed files with 176 additions and 70 deletions

View File

@ -5,7 +5,7 @@ export const getImageAbsoluteURI = (imageUrl?: string | null) => {
return null;
}
if (imageUrl?.startsWith('https:')) {
if (imageUrl?.startsWith('https:') || imageUrl?.startsWith('http:')) {
return imageUrl;
}