1
0
mirror of https://github.com/immich-app/immich.git synced 2024-11-24 08:52:28 +02:00

fix(server): about info version (#10659)

This commit is contained in:
Michel Heusschen 2024-06-27 19:36:25 +02:00 committed by GitHub
parent 9fc9465cec
commit 12b9f3ad91
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -48,7 +48,7 @@ export class ServerInfoService {
}
async getAboutInfo(): Promise<ServerAboutResponseDto> {
const version = serverVersion.toString();
const version = `v${serverVersion.toString()}`;
const buildMetadata = getBuildMetadata();
const buildVersions = await this.serverInfoRepository.getBuildVersions();