From 303f2bdf0ebda8e75927b515b27d56b4af1d143d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A8=8B=E5=BA=8F=E5=91=98=E9=98=BF=E6=B1=9F=28Relakkes?= =?UTF-8?q?=29?= Date: Wed, 3 Jun 2026 13:50:42 +0800 Subject: [PATCH] fix(desktop): resolve social media icons via publicAssetPath Bare absolute paths like /icons/bilibili.svg failed under Electron's file:// protocol. Route them through publicAssetPath so they resolve against the relative base URL, matching the GitHub and app icons. --- desktop/src/pages/Settings.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/src/pages/Settings.tsx b/desktop/src/pages/Settings.tsx index 4a3ca87b..205c4770 100644 --- a/desktop/src/pages/Settings.tsx +++ b/desktop/src/pages/Settings.tsx @@ -3830,7 +3830,7 @@ function AboutSettings() { onClick={() => openUrl(link.url)} className="w-full flex items-center gap-3 px-4 py-2.5 rounded-lg hover:bg-[var(--color-surface-hover)] transition-colors cursor-pointer" > - {link.name} + {link.name} {link.label} {link.name}