Skip to content

Commit 1105ca8

Browse files
authored
feat: include platform version in error report (#2256)
1 parent 2cabc0f commit 1105ca8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/dialogs/errors.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
const { app, shell } = require('electron')
22
const path = require('path')
3+
const os = require('os')
34
const i18n = require('i18next')
45
const dialog = require('./dialog')
56

@@ -13,7 +14,7 @@ const issueTemplate = (e) => `👉️ Please describe what you were doing when t
1314
1415
**Specifications**
1516
16-
- **OS**: ${process.platform}
17+
- **OS**: ${os.platform()} ${os.release()}
1718
- **IPFS Desktop Version**: ${app.getVersion()}
1819
- **Electron Version**: ${process.versions.electron}
1920
- **Chrome Version**: ${process.versions.chrome}

0 commit comments

Comments
 (0)