Skip to content
Snippets Groups Projects
Unverified Commit 791ae608 authored by nomad's avatar nomad Committed by GitHub
Browse files

fix(backend): fix fetchInstanceMetadata error (#11236)

parent f4d1fcaf
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment