1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 21:05:53 +00:00
* Fixed: Mistaken value returned from BTTV settings hook for Animated Emotes.
This commit is contained in:
SirStendec 2021-03-21 13:39:31 -04:00
parent d033d64ea7
commit a8b28b2d27
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -926,7 +926,7 @@ export default class Chat extends Module {
if ( val == null ) {
const temp = ctx.get('ffzap.betterttv.gif_emoticons_mode');
if ( temp == null )
val = ctx.get('context.bttv.gifs');
val = ctx.get('context.bttv.gifs') ? 1 : 0;
else
val = temp === 2 ? 1 : 0;
}