-
-
Notifications
You must be signed in to change notification settings - Fork 94
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
Memory Leak from ArrayProxy.content #238
Comments
I tried monkey patching with the above code, but it no longer shows notifications when I do this. It seems setting |
@brandynbennett were you able to figure this out? |
I ended up doing this...
|
@brandynbennett thanks for the report 🎉 I've moved away from using array proxy in the new version #251 (comment) but we are still initialising content in the same way 🤔 does it still cause the memory leak that you're describing? do you have an example of the memory leak? |
Looks like it's gone now. Thanks! |
Declaring the
content
property on thenotification-messages-service
as an array causes a memory leak. Should be declared asnull
then initialized ininit
. This started happening after I upgraded from Ember 3.5 to 3.7The text was updated successfully, but these errors were encountered: