We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 669e178 commit 5a53dddCopy full SHA for 5a53ddd
src/lib/client.ts
@@ -439,8 +439,9 @@ export class Client extends EventEmitter {
439
upload.on('error', e => {
440
if (this.forwardErrors) {
441
Sentry.withScope(scope => {
442
- scope.setExtras(e.details);
443
- scope.setExtras({ uploadOptions: options, storeOptions });
+ scope.setExtras({ uploadOptions: options, storeOptions, details: e.details });
+ e.message = `FS-${e.message}`;
444
+
445
Sentry.captureException(e);
446
});
447
}
0 commit comments