Skip to content

Commit

Permalink
fix(suite-desktop): swapped fields in desktop analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
Lemonexe committed Dec 6, 2024
1 parent e82b508 commit 37f1db2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/suite-desktop-core/src/modules/system-information.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export const init: ModuleInit = () => {
validateIpcMessage(ipcEvent);

try {
const osVersion = os.platform();
const osName = os.release();
const osVersion = os.release();
const osName = os.platform();
const osArchitecture = os.arch();

return { success: true, payload: { osVersion, osName, osArchitecture } };
Expand Down

0 comments on commit 37f1db2

Please sign in to comment.