InterLinked1

Results 153 comments of InterLinked1

I tried it and it didn't appear to work, but I might have done something wrong, and I'm not sure if other stuff needs to be updated. ``` struct discord_create_message...

> Are you sure you it's properly installed? I can't reproduce using the same code: It's properly install, the flag itself is available as the code compiles. > Not related...

> If we take to a JSON viewer, we can see there is a flag on author, and one at the root of the json: Ah, I see what you...

> I made a gist [with the code](https://gist.github.com/ThePedroo/c820dc88de408f317eb499df556e98c0) -- I didn't change the position of where the flags is set, but you can built-in it to the struct Okay, it...

Here is another thing that I am more sure is a bug, because I see the info in the HTTP request: `owner_id` in `struct discord_guild *` also always appears to...

Thankfully, retrying `discord_request_guild_members` over and over again mostly works: each time, the presence size is less than the member size, but I'm able to get it down to 2 failures...

It's actually for `discord_set_on_ready(discord_client, &on_ready);`, if that makes a difference. I added `discord_cache_enable(discord_client, DISCORD_CACHE_GUILDS);`, but the guild owner still seems to be 0. Another thing that seems to be happening...

Okay, if it's done being used when it returns, then that's fine, I'll actually make it stack-allocated then, and just free the array, since that's what I was going to...

Okay, so the decoding error is actually on *their* end, and now I see why: Seems like this might occur when trying to add more user IDs than a buffer...

@HackerSmacker Thanks, did you mean to change the buffer size in `discord_gateway_send_request_guild_members` instead? Increasing the buffer size in discord_gateway_send_identify didn't make any difference, but increasing from 1024 to 4096 there...