1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-17 19:40:54 +00:00
* Fixed: Additional fixes for the issue with chat disappearing.
This commit is contained in:
SirStendec 2025-07-17 15:18:26 -04:00
parent 78d40d402e
commit febd7da7c6
2 changed files with 5 additions and 3 deletions

View file

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

View file

@ -3214,7 +3214,8 @@ export default class ChatHook extends Module {
mystery = mysteries[key] = {
recipients: [],
size: e.massGiftCount,
expires: Date.now() + 30000
expires: Date.now() + 30000,
toJSON: () => null
};
}
@ -3253,7 +3254,8 @@ export default class ChatHook extends Module {
mystery = mysteries[key] = {
recipients: [],
size: e.massGiftCount,
expires: Date.now() + 30000
expires: Date.now() + 30000,
toJSON: () => null
};
}