1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-10-10 13:20:51 +00:00
* Fixed: The Channel Title settings profile not working.
* Fixed: Remove an unnecessary import that VS Code *helpfully* forced into the channel module last commit.
* Changed: Only load the `safe-regex` module on demand, it's kind of hefty.
This commit is contained in:
SirStendec 2020-07-18 16:27:45 -04:00
parent 22c60050e0
commit 5b76e7c22a
6 changed files with 50 additions and 21 deletions

View file

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