1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 21:05:53 +00:00
* Fixed: Stupid typo making badge tool-tips not work correctly in some cases.
This commit is contained in:
SirStendec 2023-11-03 16:21:52 -04:00
parent a5e5082d63
commit c4da7fa9d9
2 changed files with 3 additions and 2 deletions

View file

@ -1,7 +1,7 @@
{ {
"name": "frankerfacez", "name": "frankerfacez",
"author": "Dan Salvato LLC", "author": "Dan Salvato LLC",
"version": "4.57.3", "version": "4.57.4",
"description": "FrankerFaceZ is a Twitch enhancement suite.", "description": "FrankerFaceZ is a Twitch enhancement suite.",
"private": true, "private": true,
"license": "Apache-2.0", "license": "Apache-2.0",

View file

@ -1209,7 +1209,7 @@ export default class Badges extends Module {
if ( ! data.addon && (data.name === 'developer' || data.name === 'subwoofer' || data.name === 'supporter') ) if ( ! data.addon && (data.name === 'developer' || data.name === 'subwoofer' || data.name === 'supporter') )
data.click_url = 'https://www.frankerfacez.com/subscribe'; data.click_url = 'https://www.frankerfacez.com/subscribe';
if ( ! data.addon && (data.name === 'subwoofer') ) if ( ! data.addon && (data.name === 'subwoofer') ) {
data.base_id = data.id; data.base_id = data.id;
data.tooltipExtra = data => { data.tooltipExtra = data => {
@ -1229,6 +1229,7 @@ export default class Badges extends Module {
}); });
}) })
}; };
}
} }
if ( generate_css ) if ( generate_css )