Andrei Mihu
Andrei Mihu
JSONB columns store the underlying data as binary, so what you're seeing is a raw array of bytes. If you convert that to a string you'll see it reads as...
I think in the absence of any new information we can consider this issue resolved by the comment above. To stress for any other developers finding this issue: we do...
@JMCNAM-SN We were unable to reproduce the issue with Nakama 3.12.0, and the code provided is too complex to pick apart. If you can reproduce and have a smaller code...
A panic output or stacktrace would be useful here, but I can try to guess what you're seeing. I'm not sure your panic is due to Lua runtime instances sharing...
``` new Date(new Date().toLocaleDateString()).getTime(); // NaN ``` This is correct, the expression above evaluates to `NaN` and as far as we can verify (you can try various online JS playground...
@deflinhec Thanks for the PR! Could you add a bit of detail on what the issue you're trying to solve is, example(s) of prior behaviour, and example(s) of behaviour after...
The server currently requires all storage values to be JSON objects, meaning top-level `{}`. This constraint may be loosened later but for now this is intended behaviour. I've pushed an...
* The server treats DMs the same as other topics, we should allow multi-join on all or a mix of topic types. For example join 2 DMs and 1 room...
I see how that can be a problem. Can you point me in the right direction for docs about the stream unzip you mentioned? I see [zlib](http://erlang.org/doc/man/zlib.html) seems to handle...
Thanks for the pointers! I was able to get a decent solution rolling using streaming decompression and limiting both the buffer size and max chunks allowed. It's hooked in as...