fix(backend): fix fetchInstanceMetadata error (#11236)
This commit is contained in:
parent
f4d1fcaf67
commit
791ae608a5
|
@ -103,7 +103,7 @@ export class FetchInstanceMetadataService {
|
|||
|
||||
if (name) updates.name = name;
|
||||
if (description) updates.description = description;
|
||||
if (icon || favicon) updates.iconUrl = icon ?? favicon;
|
||||
if (icon || favicon) updates.iconUrl = (icon && !icon.includes('data:image/png;base64')) ? icon : favicon;
|
||||
if (favicon) updates.faviconUrl = favicon;
|
||||
if (themeColor) updates.themeColor = themeColor;
|
||||
|
||||
|
|
Loading…
Reference in New Issue