feat: [crashReporter] enable compression by default (#25288)

This commit is contained in:
Jeremy Rose 2020-09-03 12:43:58 -07:00 committed by GitHub
parent 4484e95fc8
commit 4dc09ea9dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 2 deletions

View file

@ -13,7 +13,7 @@ class CrashReporter {
submitURL,
uploadToServer = true,
rateLimit = false,
compress = false
compress = true
} = options || {};
if (submitURL == null) throw new Error('submitURL is a required option to crashReporter.start');