1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-15 17:46:55 +00:00
* Changed: Use `cdn2` for loading the script, rather than `cdn` to put the script files on a separate domain from other content.
* Fixed: Bug with the audio compressor that would cause it to enter a broken state for users (mostly on Firefox).
* Experiments: Set the EMQX PubSub experiment to 50%.
This commit is contained in:
SirStendec 2024-10-19 13:13:01 -04:00
parent 3538ef86ad
commit efd6d2fa42
8 changed files with 13 additions and 13 deletions

View file

@ -686,7 +686,7 @@ export default class TranslationManager extends Module {
if (! hash)
continue;
promises.push(fetchJSON(`https://cdn.frankerfacez.com/static/locale/${id}/${chnk}.${hash}.json`));
promises.push(fetchJSON(`https://cdn2.frankerfacez.com/static/locale/${id}/${chnk}.${hash}.json`));
}
const chunks = await Promise.all(promises);