David Lee
David Lee
Thanks @danmarshall – that makes sense. Unfortunately, manually separating the chains in my models won't work for my application, which is dealing with user-generating paths. Do you have any advice...
Here's a branch that I started that I think fixes the unnecessary fetch of the thread root: https://github.com/matrix-org/matrix-js-sdk/compare/develop...davidisaaclee:matrix-js-sdk:avoid-unnecessary-fetch-thread-root?expand=1 It's pretty tough to write a test around this code – I...
https://github.com/matrix-org/matrix-js-sdk/compare/develop...davidisaaclee:matrix-js-sdk:avoid-unnecessary-fetch-thread-root?expand=1 does not fix the `MaxListenersExceededWarning`: - on initial sync, many messages will be added to a thread "at once" - each of these will trigger a `fetchRootEvent` - none...
I tried reusing ongoing promises for `thread.fetchRootEvent` and `thread.processRootEvent`, which got rid of the unnecessary HTTP calls: https://github.com/davidisaaclee/matrix-js-sdk/commit/891e2cb0a90a2670d60a4a3371a072ef32328a2f But I still get `MaxListenersExceededWarning`. Looking at the new offending line of...
@t3chguy thank you – I've started the work here, which begins with reducing the unnecessary fetches of thread root events https://github.com/matrix-org/matrix-js-sdk/pull/3530 I plan on adding the code to remove the...
I'm giving up on the fixes in #3530 for now, since they are causing other issues: https://github.com/matrix-org/matrix-js-sdk/pull/3530#issuecomment-1616022487 – the reported issues are still in the SDK, so I'd love if...
xI am encountering what I believe to be the same issue. @Seele-Vollerei32 – Did you find a solution? I'm also curious: is your server pretty low-powered (low memory / CPU)?...
I could not figure out what the issue was, but migrating to a new instance by following https://github.com/spantaleev/matrix-docker-ansible-deploy/blob/master/docs/maintenance-migrating.md got me back up and running :(
This is an issue for me (in that it causes noise in my application's logs). I'm using Capacitor with a React app running on an iOS iPhone and on web....
I could not reproduce using https://github.com/ionic-team/capacitor-testapp as a base; if I find time, I'll try to reproduce again. (Is there a more barebones Capacitor + iOS sample project? For my...