Closed filip131311 closed 3 weeks ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
radon-ide | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Oct 24, 2024 4:12pm |
One more thing that comes to my mind here is that you should test this with RN 76 with the new debugger, as it may handle reloads differently compared to old one.
@kmagiera you were right, the debugger creates execution context in a different moment in RN 76, I changed the approach to accommodate both versions.
This PR fixes the problem with debugger ignoring uncaught errors after reloading JS. Because errors Global Handler was only set on first connection to the debugger it would not be added after reload. The solution was to move the logic of setting the handler to happen on debugger event that is triggered both on first and consecutive application loads.
How Has This Been Tested:
Additional changes: this PR also hides related internal logging from the users debug console