Skip to content

Commit

Permalink
feat: include platform version in error report (ipfs#2256)
Browse files Browse the repository at this point in the history
  • Loading branch information
hacdias committed Sep 12, 2022
1 parent 2cabc0f commit 1105ca8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/dialogs/errors.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
const { app, shell } = require('electron')
const path = require('path')
const os = require('os')
const i18n = require('i18next')
const dialog = require('./dialog')

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

0 comments on commit 1105ca8

Please sign in to comment.