Alia

Results 9 comments of Alia

This might be a necro, but I fixed this by installing RustAnalyzer and disabling RLS. So that might be worth a try.

Hi, landed here after searching for ` TypeError: Cannot read properties of undefined (reading '$changes')`, let me know if you want me to just open a new issue. Anyway, hopefully...

unlikely, its a pretty large project with a large schema and we don't have a good repro case.. and when it does happen its with like 13+ players, maybe if...

Caught it in the debugger once now ![image](https://github.com/colyseus/colyseus/assets/537506/0143340e-f906-4780-8f07-c57012d34a4e)

Looks like refCounts gets a NAN from removeRef.. looks like its missing an "|| 0" or something checking if the key exists before deleting it? Its probably something further up...

maybe something like the following would help track down the issue ``` removeRef(refId: number) { const refCount = this.refCounts[refId]; if (refCount === undefined) { console.warn(`trying to remove reference ${refId} that...

Yup, you got it. Ill check out dark reader. Thanks for the tip! On Wed, 17 Nov 2021 at 13:47, Olivia Di Matteo ***@***.***> wrote: > Hi @00alia00 , thank...

@Icelk Thanks, that was a life saver! An empty playlist (and therefore no image) was killing it for me! Adding an image to the playlist fixed it.