Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 539e68a

Browse files
committed
Remove dupe send debug
1 parent 664d665 commit 539e68a

File tree

1 file changed

+2
-15
lines changed

1 file changed

+2
-15
lines changed

main.js

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -582,23 +582,10 @@ app.on('ready', function() {
582582

583583
template.push(
584584
{
585-
label: 'Send Debug Package', type: 'normal', click: function() {
586-
var body = 'OpenBazaar Debug Report\n\n';
587-
body += 'OS: ' + os.platform() + ' ' + os.release() + '\n';
588-
body += 'Architecture: ' + os.arch() + '\n';
589-
body += 'CPUs: ' + JSON.stringify(os.cpus(), null, 2) + '\n';
590-
body += 'Free Memory: ' + os.freemem() + '\n';
591-
body += 'Total Memory: ' + os.totalmem() + '\n\n';
592-
body += 'Debug Log:\n';
593-
body += serverOut;
594-
595-
require('open')('mailto:[email protected]?subject=OpenBazaar Debug Report&body=' + body);
596-
}
585+
type: 'separator'
597586
},
598587
{
599-
type: 'separator' },
600-
{
601-
label: 'Quit', type: 'normal', accelerator: 'Command+Q', click: function () {
588+
label: 'Quit', type: 'normal', accelerator: 'Command+Q', click: function () {
602589
app.quit();
603590
}
604591
}

0 commit comments

Comments
 (0)