Empty list shows on localhost:1127
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.
Do you use address like?
submitURL: 'http://127.0.0.1:1127/post'
Should use post in url
I'm including /post in the url but it's still showing an empty list.
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.