mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
Fix upgrade logic.
This commit is contained in:
parent
5b1eb8bec2
commit
f9f3a5bcab
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ async function sendTelemetry(action) {
|
||||||
os: `${os.type()} (${os.version()})`,
|
os: `${os.type()} (${os.version()})`,
|
||||||
docker: isDocker(),
|
docker: isDocker(),
|
||||||
ci: isCI,
|
ci: isCI,
|
||||||
upgrade: json.version || false,
|
upgrade: json.version !== undefined && json.version !== pkg.version,
|
||||||
};
|
};
|
||||||
|
|
||||||
await retry(
|
await retry(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue