1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-07 23:00:54 +00:00
* Fixed: Do not submit error reports when add-on development is enabled.
* Fixed: The emote menu not updating appropriately when certain settings changed or data loaded.
* Fixed: The emote menu breaking when the emote menu loaded before emoji data loaded and the 'combined tabs' setting was enabled.
This commit is contained in:
SirStendec 2019-12-13 20:14:55 -05:00
parent 4f0144ed71
commit 00b69a3c66
4 changed files with 41 additions and 37 deletions

View file

@ -216,6 +216,9 @@ export default class RavenLogger extends Module {
if ( DEBUG )
return false;
if ( this.resolve('addons')?.has_dev )
return false;
return true;
}
};