mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-27 21:05:53 +00:00
4.20.83
* Fixed: Mistaken value returned from BTTV settings hook for Animated Emotes.
This commit is contained in:
parent
d033d64ea7
commit
a8b28b2d27
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "frankerfacez",
|
"name": "frankerfacez",
|
||||||
"author": "Dan Salvato LLC",
|
"author": "Dan Salvato LLC",
|
||||||
"version": "4.20.82",
|
"version": "4.20.83",
|
||||||
"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",
|
||||||
|
|
|
@ -926,7 +926,7 @@ export default class Chat extends Module {
|
||||||
if ( val == null ) {
|
if ( val == null ) {
|
||||||
const temp = ctx.get('ffzap.betterttv.gif_emoticons_mode');
|
const temp = ctx.get('ffzap.betterttv.gif_emoticons_mode');
|
||||||
if ( temp == null )
|
if ( temp == null )
|
||||||
val = ctx.get('context.bttv.gifs');
|
val = ctx.get('context.bttv.gifs') ? 1 : 0;
|
||||||
else
|
else
|
||||||
val = temp === 2 ? 1 : 0;
|
val = temp === 2 ? 1 : 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue