1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-11 00:20:54 +00:00
* Changed: Set the default chat reply style to Twitch's own, now that messages can be selected.
* Fixed: Update the chat replies support for Twitch's default style.
* Fixed: Badge tool-tips not working for certain chat messages with additional formatting. (Closes #887)
* Fixed: FFZ hiding the `Watch Full Video` button on clips pages if the option to hide the native live viewer count is enabled. (Closes #883)
* API Added: `threads` icon.
This commit is contained in:
SirStendec 2020-08-14 17:17:24 -04:00
parent 8fb51dc06b
commit e7228d2795
19 changed files with 79 additions and 59 deletions

View file

@ -346,9 +346,12 @@ export default class Badges extends Module {
this.tooltips.types.badge = (target, tip) => {
tip.add_class = 'ffz__tooltip--badges';
const show_previews = this.parent.context.get('tooltip.badge-images'),
container = target.parentElement.parentElement,
room_id = container.dataset.roomId,
const show_previews = this.parent.context.get('tooltip.badge-images');
let container = target.parentElement.parentElement;
if ( ! container.dataset.roomId )
container = target.closest('[data-room-id]');
const room_id = container.dataset.roomId,
room_login = container.dataset.room,
data = JSON.parse(target.dataset.badgeData),
out = [];

View file

@ -110,7 +110,7 @@ export default class Metadata extends Module {
setup(data) {
return {
live: data.channel?.live_since != null,
live: data.channel?.live && data.channel?.live_since != null,
count: data.getViewerCount()
}
},