mini-breakpad-server icon indicating copy to clipboard operation
mini-breakpad-server copied to clipboard

Empty list shows on localhost:1127

Open PinkyJie opened this issue 9 years ago • 3 comments

I setup the server and make it running successfully, and I add the config in electron to send crash report to this address, then I use process.crash() to fire a crash manually. Now I can see xxx.dmp file generated in tmp folder, but when I open localhost:1127, I can only see the "Crash Reports" title on the page, no report list.

PinkyJie avatar Dec 12 '16 03:12 PinkyJie

Do you use address like?

submitURL: 'http://127.0.0.1:1127/post'

Should use post in url

maxamon avatar Dec 13 '16 16:12 maxamon

I'm including /post in the url but it's still showing an empty list.

diegogangl avatar Aug 26 '21 22:08 diegogangl

Do you use crashReporter.start option compress?

I solved this problem with

compress: false

The default value of compress is true. In this case, crashReporter can not save report.

EmilyPaek avatar May 02 '22 02:05 EmilyPaek