1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-10-10 13:20:51 +00:00
* Added: Setting to disable Channel Hosting.
* Added: Setting to hide streams tagged as Promoted from the directory.
* Fixed: Tool-tips not appearing when an element is open in fullscreen.
* Fixed: Bug when destroying a tool-tip instance.
* Fixed: Directory cards not updating with FFZ features on the front page.

* API Added: `Subpump` module for manipulating Twitch PubSub events.
* API Changed: Add-Ons can now define custom settings profile filters.
This commit is contained in:
SirStendec 2020-07-18 15:44:02 -04:00
parent ced61d2bfc
commit 22c60050e0
17 changed files with 356 additions and 96 deletions

View file

@ -58,7 +58,7 @@ export default class SettingsProfile extends EventEmitter {
matches(context) {
if ( ! this.matcher )
this.matcher = createTester(this.context, require('./filters'));
this.matcher = createTester(this.context, this.manager.filters);
return this.matcher(context);
}