mirror of https://github.com/status-im/metro.git
RN: Fix Broken Symbolication
Reviewed By: fkgozali Differential Revision: D4159009 fbshipit-source-id: 6f91428a769db820c49d7300138a06350f52e63e
This commit is contained in:
parent
b75dc61a46
commit
1fdb99efac
|
@ -728,7 +728,7 @@ class Server {
|
||||||
const symbolicatingLogEntry =
|
const symbolicatingLogEntry =
|
||||||
print(log(createActionStartEntry('Symbolicating')));
|
print(log(createActionStartEntry('Symbolicating')));
|
||||||
|
|
||||||
new Promise.resolve(req.rawBody).then(body => {
|
Promise.resolve(req.rawBody).then(body => {
|
||||||
const stack = JSON.parse(body).stack;
|
const stack = JSON.parse(body).stack;
|
||||||
|
|
||||||
// In case of multiple bundles / HMR, some stack frames can have
|
// In case of multiple bundles / HMR, some stack frames can have
|
||||||
|
|
Loading…
Reference in New Issue