Chris Cowan
Chris Cowan
The auth token is transformed into the Authorization header you see there. I wonder if your issue might be that you're also running into https://github.com/isaced/appstore-connect-sdk/issues/25.
It looks like the code expects the expirationTime parameter to be an absolute timestamp instead of a relative duration: https://github.com/isaced/appstore-connect-sdk/blob/3a75e4cf0fe582548ac79ac457b95d09aa774301/src/auth.ts#L30 I wondered if the current behavior should be embraced and...
I decided to look into the code behind this so I could fix it myself, but it looks like this issue was already solved in 2714e1e7d1f493891c97ffe248160aaf912da87e, as the refactored startHeartbeating...
Trying to use the latest version (19.0.0-next.6ad4e1d) of the `@discordeno/bot` package fails with an error "Could not find npm package '@discordeno/gateway' matching '19.0.0-alpha.1'." (And trying to use the previous version,...
I've actually just run into a new similar error while waking up my computer while using Discordeno, that seems to be in parts of code that are unchanged in v19:...
When `this.offlineSendQueue.forEach((resolve) => resolve())` is called, everything waiting on checkOffline() including the Shard send() method resumes in a microtask which is scheduled after the current JS execution ends but before...
I worked around the issue by the following. This should be documented or automated. ``` sh cd deps/curl ./buildconf emconfigure ./configure ``` and then I edited include/curl/curlbuild.h (not sure why...
I fixed this by removing `nextafter` and `nextafterf` from src/EmscriptenSupport.cpp. Maybe they were implemented by a newer version of Emscripten?
It seems like -Werror is on when it shouldn't be. (Not sure why things weren't broken before. Maybe newer versions of emscripten have stricter -Werror behavior?) Removing it from the...
Is the deps/curl directory supposed to be a git submodule? `git ls-files --stage | grep 160000` implies it is, but `git submodule update --init` fails because there's no .gitmodules file.