mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 08:31:59 +00:00
fix(server): about info version (#10659)
This commit is contained in:
parent
9fc9465cec
commit
12b9f3ad91
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ export class ServerInfoService {
|
||||||
}
|
}
|
||||||
|
|
||||||
async getAboutInfo(): Promise<ServerAboutResponseDto> {
|
async getAboutInfo(): Promise<ServerAboutResponseDto> {
|
||||||
const version = serverVersion.toString();
|
const version = `v${serverVersion.toString()}`;
|
||||||
const buildMetadata = getBuildMetadata();
|
const buildMetadata = getBuildMetadata();
|
||||||
const buildVersions = await this.serverInfoRepository.getBuildVersions();
|
const buildVersions = await this.serverInfoRepository.getBuildVersions();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue