diff --git a/server/endpoints/system.js b/server/endpoints/system.js index d15931ade11..05c0cf7c95d 100644 --- a/server/endpoints/system.js +++ b/server/endpoints/system.js @@ -802,7 +802,8 @@ function systemEndpoints(app) { app.get("/system/is-default-logo", async (_, response) => { try { const currentLogoFilename = await SystemSettings.currentLogoFilename(); - const isDefaultLogo = currentLogoFilename === LOGO_FILENAME; + const isDefaultLogo = + !currentLogoFilename || currentLogoFilename === LOGO_FILENAME; response.status(200).json({ isDefaultLogo }); } catch (error) { console.error("Error processing the logo request:", error);