1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 21:05:53 +00:00
* Fixed: Tab-completion of FFZ emotes.
This commit is contained in:
SirStendec 2022-05-18 17:58:46 -04:00
parent 82a34cdce9
commit 213c2195cc
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -147,7 +147,7 @@ export default class Input extends Module {
this.EmoteSuggestions = this.fine.define(
'tab-emote-suggestions',
n => n && n.getMatchedEmotes,
n => n && n.getMatches && n.autocompleteType === 'emote',
Twilight.CHAT_ROUTES
);