From 6e49b689e97734b0d902d8b3535ad5abcc1f663e Mon Sep 17 00:00:00 2001 From: SirStendec Date: Fri, 29 Aug 2025 11:59:18 -0400 Subject: [PATCH] 4.77.12 Hey everyone, this is just a quick fix. As a result of this change, FFZ will load on embedded players, chats, and the streamer dashboard. What it won't do is load with your settings. This is due to a couple changes Twitch has made to their website that unintentionally broke the method we were using to access domain storage from alternative subdomains. Ultimately, this just means we need to prioritize getting an extension-backed storage provider setup for browser extension users and the relevant GreaseMonkey-compatible APIs for user-script users. * Fixed: FFZ failing to load on alternative subdomains due to the Cross Origins Settings Provider breaking. --- package.json | 2 +- src/modules/main_menu/components/provider.vue | 6 +++--- src/settings/providers.ts | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 5ea9067f..d1ef6f1a 100755 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "frankerfacez", "author": "Dan Salvato LLC", - "version": "4.77.11", + "version": "4.77.12", "description": "FrankerFaceZ is a Twitch enhancement suite.", "private": true, "license": "Apache-2.0", diff --git a/src/modules/main_menu/components/provider.vue b/src/modules/main_menu/components/provider.vue index 30561293..6d3cb7d7 100644 --- a/src/modules/main_menu/components/provider.vue +++ b/src/modules/main_menu/components/provider.vue @@ -1,7 +1,7 @@