taylor.fish
taylor.fish
Yeah, it looks like Discord now uses hCaptcha instead of reCAPTCHA. A non-ideal workaround is to first log in or register through the official web client and complete the CAPTCHA...
I wasn't able to reproduce this issue. Does it happen even if you've just logged in to Discord through the website? If the issue still persists, could you try running...
This appears to be the same issue as #17. I think it's probably an upstream issue in PyGTK.
You need to pass the compiler option `-DNO_AUTH=1`.
I have a [fork of Vital](https://github.com/taylordotfish/vital) which, among various fixes, removes the dependency on the Firebase SDK altogether. Even with `NO_AUTH=1`, the upstream version of Vital in this repository links...
@magnetophon If you're still having trouble, you might want to try [my fork of Vital](https://github.com/taylordotfish/vital), which, among various fixes, uses `/usr/local` as the default installation prefix and allows it to...
I'm also having this problem, but I'm on a weird architecture, so I can't be sure that any of my problems are also experienced on x86. In my case, I...
I believe I've fixed this issue in [my fork of Vital](https://github.com/taylordotfish/vital), along with a number of other fixes. See [this commit specifically](https://github.com/taylordotfish/vital/commit/ca788b9ab25377d54d9a15b2cc47aebf344e21e8) for details about what was causing the issue...
@mtytel Yeah, I was a bit unsure about undoing the lock there, but I'm also concerned about removing the lock in `getUI()`, since [JUCE's documentation](https://docs.juce.com/master/classMessageManagerLock.html) says “it's not thread-safe to...
[Here's an alternative fix for the deadlock.](https://github.com/taylordotfish/vital/commit/ebeeaabe4576d799e8c419fa925e1f0f48439d4e) It's a larger change, but I think it’s easier to reason about the correctness of this code. With this change, `registerFdCallback()` and `unregisterFdCallback()`...