fix: change URL to Url in the Obtainium apk links api endpoint (#18764)

change `URL` to `Url`
This commit is contained in:
Nicholas 2025-05-30 00:50:09 -04:00 committed by GitHub
parent 0f42babb6b
commit aebd68e24e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,12 +50,12 @@ export class ServerService extends BaseService {
} }
getAndroidLinks(): ServerApkLinksDto { getAndroidLinks(): ServerApkLinksDto {
const baseURL = `https://github.com/immich-app/immich/releases/download/v${serverVersion.toString()}`; const baseUrl = `https://github.com/immich-app/immich/releases/download/v${serverVersion.toString()}`;
return { return {
arm64v8a: `${baseURL}/app-arm64-v8a-release.apk`, arm64v8a: `${baseUrl}/app-arm64-v8a-release.apk`,
armeabiv7a: `${baseURL}/app-armeabi-v7a-release.apk`, armeabiv7a: `${baseUrl}/app-armeabi-v7a-release.apk`,
universal: `${baseURL}/app-release.apk`, universal: `${baseUrl}/app-release.apk`,
x86_64: `${baseURL}/app-x86_64-release.apk`, x86_64: `${baseUrl}/app-x86_64-release.apk`,
}; };
} }