🐛 fix: correct desktop download URL path (#11990)

Fixed the download URL path from '/download' to '/downloads' to match the actual official site path.
This commit is contained in:
Innei
2026-01-30 17:53:09 +08:00
committed by GitHub
parent 2c791d749d
commit e46df98907

View File

@@ -66,6 +66,6 @@ export const CHANGELOG_URL = urlJoin(OFFICIAL_SITE, 'changelog/versions');
export const DOWNLOAD_URL = {
android: 'https://play.google.com/store/apps/details?id=com.lobehub.app',
default: urlJoin(OFFICIAL_SITE, '/download'),
default: urlJoin(OFFICIAL_SITE, '/downloads'),
ios: 'https://testflight.apple.com/join/2ZbjX4Qp',
} as const;