1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 16:38:31 +00:00
* Added: Setting to filter out chat messages by type. Can be used to remove hosting and raid notices, among other things.
* Added: Support for clicking badges. It's a native feature that's been missing for ages.
* Changed: Make headers slightly bigger in settings so that they stand out more.
* Fixed: Certain settings inheriting default values when they should not.
* Fixed: Bug in the FFZ Emote Menu when garbage subscription data is returned from Twitch.
* Fixed: Do not suppress error messages in the console when an error happens in an event handler.
This commit is contained in:
SirStendec 2020-08-17 13:33:30 -04:00
parent fd2977f899
commit 129f350a80
12 changed files with 626 additions and 200 deletions

View file

@ -60,7 +60,9 @@ export const array_merge = {
let trailing = [];
let had_value = false;
const profs = [...profiles, DEFAULT];
let profs = profiles;
if ( definition.inherit_default )
profs = [...profiles, DEFAULT];
for(const profile of profs) {
let value;