Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MliKiowa committed Dec 30, 2024
1 parent aee9602 commit c87d365
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/common/umami.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@ export class UmamiTraceCore {
guid: this.guid,
platform: os.platform(),
arch: os.arch(),
cpus: os.cpus(),
uptime: os.uptime(),
uptime: new Date(Date.now() - os.uptime() * 1000).toISOString().replace('T', ' ').substring(0, 19)
}
};
this.sendRequest(payload, type);
Expand Down

0 comments on commit c87d365

Please sign in to comment.