removed extraneous captureException

This commit is contained in:
Danny Coates 2017-08-02 15:53:52 -07:00
parent de826afb9b
commit fef26e083a
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
2 changed files with 1 additions and 5 deletions

View file

@ -133,10 +133,6 @@ class FileSender extends EventEmitter {
);
xhr.send(fd);
});
})
.catch(err => {
Raven.captureException(err);
return Promise.reject(err);
});
}
}