1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-12 00:50:53 +00:00
* Changed: The settings for Animated Emotes and chat user color correction now default to enabled or disabled based on your vanilla Twitch settings.
* Changed: Strip automatic error reporting from builds till it can be fixed.
* Fixed: Native viewer count and uptime not hiding correctly when a stream goes live.
* API Added: Settings can now depend on `localStorage` values by using `ls.{name}` keys for JSON or `ls.raw.{name}` for raw strings.
* Maintenance: Update dependencies.
This commit is contained in:
SirStendec 2021-06-18 14:27:14 -04:00
parent ce38c3c251
commit 2340992977
17 changed files with 2689 additions and 1438 deletions

View file

@ -1,7 +1,5 @@
'use strict';
import RavenLogger from './raven';
import Logger from 'utilities/logging';
import Module from 'utilities/module';
@ -23,12 +21,10 @@ class FFZBridge extends Module {
this.__modules.core = this;
// ========================================================================
// Error Reporting and Logging
// Logging
// ========================================================================
this.inject('raven', RavenLogger);
this.log = new Logger(null, null, null, this.raven);
this.log = new Logger(null, null, null);
this.log.label = 'FFZBridge';
this.log.init = true;