mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-08-16 19:10:54 +00:00
4.77.10
* Fixed: Additional fixes for the issue with chat disappearing.
This commit is contained in:
parent
78d40d402e
commit
febd7da7c6
2 changed files with 5 additions and 3 deletions
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue