1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-05 22:00:54 +00:00
* Fixed: Chat not appearing correctly when using the Separator appearance options.
* API Added: Channel-specific emote sets can set a `title_is_channel` flag to have the FFZ emote menu automatically rename the emote set to show the source channel's name when using Shared Chat.
This commit is contained in:
SirStendec 2024-10-24 14:37:17 -04:00
parent 7499f308a6
commit ef7e91f82b
8 changed files with 23 additions and 18 deletions

View file

@ -1644,9 +1644,9 @@ export default class Emotes extends Module {
const out = [], seen = new Set;
this._withSources(out, seen, room.emote_sets);
this._withSources(out, seen, room.emote_sets, room.id);
if ( room_user )
this._withSources(out, seen, room_user.emote_sets);
this._withSources(out, seen, room_user.emote_sets, room.id);
// Shared Chats
if ( room?.shared_chats?.size > 0 )