Skip to content

Commit 1f7bda2

Browse files
NicholasFlamysavely-krasovsky
authored andcommitted
fix: change URL to Url in the Obtainium apk links api endpoint (immich-app#18764)
change `URL` to `Url`
1 parent f20b779 commit 1f7bda2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

server/src/services/server.service.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ export class ServerService extends BaseService {
5050
}
5151

5252
getAndroidLinks(): ServerApkLinksDto {
53-
const baseURL = `https://github.com/immich-app/immich/releases/download/v${serverVersion.toString()}`;
53+
const baseUrl = `https://github.com/immich-app/immich/releases/download/v${serverVersion.toString()}`;
5454
return {
55-
arm64v8a: `${baseURL}/app-arm64-v8a-release.apk`,
56-
armeabiv7a: `${baseURL}/app-armeabi-v7a-release.apk`,
57-
universal: `${baseURL}/app-release.apk`,
58-
x86_64: `${baseURL}/app-x86_64-release.apk`,
55+
arm64v8a: `${baseUrl}/app-arm64-v8a-release.apk`,
56+
armeabiv7a: `${baseUrl}/app-armeabi-v7a-release.apk`,
57+
universal: `${baseUrl}/app-release.apk`,
58+
x86_64: `${baseUrl}/app-x86_64-release.apk`,
5959
};
6060
}
6161

0 commit comments

Comments
 (0)