-
Notifications
You must be signed in to change notification settings - Fork 498
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
Fix VectorHostingController infinite loop #6381
Conversation
Kudos, SonarCloud Quality Gate passed! |
Codecov Report
@@ Coverage Diff @@
## develop #6381 +/- ##
===========================================
- Coverage 6.54% 6.18% -0.36%
===========================================
Files 1444 1444
Lines 155533 155474 -59
Branches 62507 62481 -26
===========================================
- Hits 10179 9616 -563
- Misses 144948 145455 +507
+ Partials 406 403 -3
Continue to review full report at Codecov.
|
📱 Scan the QR code below to install the build for this PR. If you can't scan the QR code you can install the build via this link: https://i.diawi.com/i29LUb |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested this with various polls and it seems fine to me. Glad we don't have to swizzle anymore. Thanks for fixing this!
Is it something we should do at the |
|
We've introduced an infinite loop on
VectorHostingController
when we tried to solve the safe area insets issue with method swizzling, by #6374. This PR removes the method swizzling and fixes the infinite loop.