Skip to content

Commit

Permalink
fix: incorrect ram used stats
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-jan committed Aug 8, 2024
1 parent f1c8701 commit 383fd7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class ResourcesManagerService {
const memory = results[1] as Systeminformation.MemData;
const memInfo: UsedMemInfo = {
total: memory.total,
used: memory.used,
used: memory.active,
};

return {
Expand Down

0 comments on commit 383fd7b

Please sign in to comment.