-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Course search promise rejection #2502
Comments
Can you give us the stack trace from the devtools? That'll have the actual file paths in it |
I could not. I spent an hour trying to get RN debugger to launch but it was freezing and stalling out. My devtools would not successfully launch. |
Weirdly enough, the error happens when I do not have a debugger enabled. I cannot replicate with the debugger, but I see the rejection when using as normal. |
Relevant: facebook/react-native#15902 |
Try // symbol polyfills
global.Symbol = require('core-js/es6/symbol');
require('core-js/fn/symbol/iterator');
// collection fn polyfills
require('core-js/fn/map');
require('core-js/fn/set'); The reason it works with a debugger is that remote debugging uses Chrome's js engine, instead of the bundled js engine. |
Getting a runtime error to the effect of |
So is there nothing we can do about this one besides wait? |
I'll try to dig into this. Assigning to me. |
Having looked at the code again, I think it's the Promise#finally:
Promise.prototype.finally is not yet standardized. I have now made a local branch that replaces the Promise chain here with an async function, which should have the same results. |
Not fixed yet.
|
@hawkrives Should this be reopened? |
Happens when the course search data for Android is loaded.
The text was updated successfully, but these errors were encountered: