mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
fix: change URL to Url in the Obtainium apk links api endpoint (#18764)
change `URL` to `Url`
This commit is contained in:
parent
0f42babb6b
commit
aebd68e24e
1 changed files with 5 additions and 5 deletions
|
|
@ -50,12 +50,12 @@ export class ServerService extends BaseService {
|
|||
}
|
||||
|
||||
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 {
|
||||
arm64v8a: `${baseURL}/app-arm64-v8a-release.apk`,
|
||||
armeabiv7a: `${baseURL}/app-armeabi-v7a-release.apk`,
|
||||
universal: `${baseURL}/app-release.apk`,
|
||||
x86_64: `${baseURL}/app-x86_64-release.apk`,
|
||||
arm64v8a: `${baseUrl}/app-arm64-v8a-release.apk`,
|
||||
armeabiv7a: `${baseUrl}/app-armeabi-v7a-release.apk`,
|
||||
universal: `${baseUrl}/app-release.apk`,
|
||||
x86_64: `${baseUrl}/app-x86_64-release.apk`,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue