1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-07 06:40:54 +00:00
* Added: Command to manually force chat to `/reconnect`. (This was actually added in the last version, but I forgot to include it in the change log.)
* Fixed: Rich embeds for links not appearing.
This commit is contained in:
SirStendec 2023-04-20 00:55:52 -04:00
parent 5956312ae3
commit 9381c17e71
3 changed files with 36 additions and 20 deletions

View file

@ -2056,7 +2056,7 @@ export default class Chat extends Module {
const want_mid = this.context.get('chat.rich.want-mid');
for(const token of tokens) {
if ( token.allow_rich )
if ( token.allow_rich ?? true )
for(const provider of providers)
if ( provider.test.call(this, token, msg) ) {
token.hidden = provider.can_hide_token && (this.context.get('chat.rich.hide-tokens') || provider.hide_token);