1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 21:05:53 +00:00
* Fixed: Navigating between channels with the audio compressor enabled (or having previously been enabled) causing the player to become stuck loading infinitely. (Closes #1317)
* Fixed: Features on the `clips` and `player` subdomains not working correctly. (Closes #1336)
* Changed: Finish implementing the initial emote effects.
This commit is contained in:
SirStendec 2023-03-06 17:08:47 -05:00
parent e433aa3340
commit 915ad89f58
33 changed files with 839 additions and 152 deletions

View file

@ -168,7 +168,7 @@ export default class SocketClient extends Module {
if ( ! user || ! user.id )
return fail(new Error('Unable to get current user or not logged in.'));
const es = new EventSource(`https://api-test.frankerfacez.com/auth/ext_verify/${user.id}`);
const es = new EventSource(`https://api.frankerfacez.com/auth/ext_verify/${user.id}`);
on(es, 'challenge', event => {
const conn = this.resolve('site.chat')?.ChatService?.first?.client?.connection;