Fix missing encoding in workspace-logo, members, person (#6510)
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user