fix(app): use macos marketing version (#39)

This commit is contained in:
hampus-fluxer
2026-01-06 02:02:14 +01:00
committed by GitHub
parent 8294821a96
commit ddc9caff6a
3 changed files with 5 additions and 1 deletions

View File

@@ -290,9 +290,11 @@ async function getOsContext(): Promise<Partial<ClientInfo>> {
default:
osName = desktopInfo.os;
}
const osVersion = normalize(desktopInfo.systemVersion ?? desktopInfo.osVersion);
return {
osName,
osVersion: normalize(desktopInfo.osVersion),
osVersion,
arch: normalizeArchitectureValue(desktopInfo.arch),
};
} catch (error) {