-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
ResizeObserver loop limit exceeded #5616
Comments
It writes ~1G per hour |
Maybe this can help to fix it: WICG/resize-observer#38 |
Sorry you're running into this. Let's get to the bottom of it. Because you opened a pull request, it looks like you've gotten the code up and running. When you see this error, could you add a Also: are you sure that the error comes from |
Could you tell me which debugger I could use and how to attach it? I'm not really the JS guy :-) |
Find a spot in the code where you want to put a breakpoint and add function foo() {
console.log('before the debugger');
debugger;
console.log('after the debugger');
} With the developer tools open, you should see the code stop on that line. You should be able to see a stack trace and find out additional information. |
FTR: 5.21.0 works fine with the other packages we use to build. |
tsc tells me it doesn't know about |
I'm going to close this issue because we don't officially support the openSUSE build and I can't reproduce this myself. If you can reproduce this on an officially-supported build, lemme know and we can reopen. |
I'm packaging Signal-Desktop for openSUSE and Fedora in the openSUSE Build Service.
https://build.opensuse.org/project/show/network:im:signal
Bug Description
With version 5.22 I get my
.config/Signal/logs/app.log
filled very quickly with:If I extend the logging in
ts/logging/set_up_renderer_logging.ts
to get more details I see:Steps to Reproduce
ts/hooks/useHasWrapped.ts
to exceed the loop limit :-(Platform Info
Signal Version: 5.22.0
Operating System:
openSUSE Tumbleweed
The text was updated successfully, but these errors were encountered: